From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Lunn Subject: Re: [PATCH net-next] net: phy: don't include asm/irq.h directly Date: Tue, 15 Jan 2019 22:29:51 +0100 Message-ID: <20190115212951.GB26788@lunn.ch> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Florian Fainelli , David Miller , "netdev@vger.kernel.org" To: Heiner Kallweit Return-path: Received: from vps0.lunn.ch ([185.16.172.187]:44285 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390452AbfAOV3x (ORCPT ); Tue, 15 Jan 2019 16:29:53 -0500 Content-Disposition: inline In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: > diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c > index 189cd2048..f95753eda 100644 > --- a/drivers/net/phy/phy.c > +++ b/drivers/net/phy/phy.c > @@ -36,8 +36,6 @@ > #include > #include > > -#include > - Hi Heiner There is a call to request_threaded_irq() and free_irq() in this file. So it should probably include linux/irq.h. Andrew