Re: [PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-16 Thread David Miller
From: Heiner Kallweit Date: Tue, 15 Jan 2019 21:40:51 +0100 > There's no need to and one shouldn't include asm/irq.h directly. > > Signed-off-by: Heiner Kallweit Applied.

Re: [PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-15 Thread Florian Fainelli
On 1/15/19 12:40 PM, Heiner Kallweit wrote: > There's no need to and one shouldn't include asm/irq.h directly. > > Signed-off-by: Heiner Kallweit Reviewed-by: Florian Fainelli -- Florian

Re: [PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-15 Thread Andrew Lunn
On Tue, Jan 15, 2019 at 09:40:51PM +0100, Heiner Kallweit wrote: > There's no need to and one shouldn't include asm/irq.h directly. > > Signed-off-by: Heiner Kallweit Reviewed-by: Andrew Lunn Andrew

Re: [PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-15 Thread Heiner Kallweit
On 15.01.2019 22:29, Andrew Lunn wrote: >> 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

Re: [PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-15 Thread Andrew Lunn
> 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 thi

[PATCH net-next] net: phy: don't include asm/irq.h directly

2019-01-15 Thread Heiner Kallweit
There's no need to and one shouldn't include asm/irq.h directly. Signed-off-by: Heiner Kallweit --- drivers/net/phy/mdio_bus.c | 2 -- drivers/net/phy/phy.c| 2 -- drivers/net/phy/phy_device.c | 2 -- 3 files changed, 6 deletions(-) diff --git a/drivers/net/phy/mdio_bus.c b/drivers/ne