Re: [PATCH] net: sun4i-emac: remove erroneous assignment

2013-06-04 Thread David Miller
From: Maxime Ripard Date: Tue, 4 Jun 2013 15:40:34 +0200 > On Mon, Jun 03, 2013 at 11:36:50PM +0200, Arnd Bergmann wrote: >> The newly added sun4i-emac driver causes a build error when >> CONFIG_NET_POLL_CONTROLLER is set, because it attempts to >> assign a pointer to netdev->poll_controller, whi

Re: [PATCH] net: sun4i-emac: remove erroneous assignment

2013-06-04 Thread Maxime Ripard
Hi Arnd, On Mon, Jun 03, 2013 at 11:36:50PM +0200, Arnd Bergmann wrote: > The newly added sun4i-emac driver causes a build error when > CONFIG_NET_POLL_CONTROLLER is set, because it attempts to > assign a pointer to netdev->poll_controller, which has > been replaced with ops->ndo_poll_controller i

Re: [PATCH] net: sun4i-emac: remove erroneous assignment

2013-06-03 Thread Stefan Roese
On 06/03/2013 11:36 PM, Arnd Bergmann wrote: > The newly added sun4i-emac driver causes a build error when > CONFIG_NET_POLL_CONTROLLER is set, because it attempts to > assign a pointer to netdev->poll_controller, which has > been replaced with ops->ndo_poll_controller in 2.6.31! > > The correct a

[PATCH] net: sun4i-emac: remove erroneous assignment

2013-06-03 Thread Arnd Bergmann
The newly added sun4i-emac driver causes a build error when CONFIG_NET_POLL_CONTROLLER is set, because it attempts to assign a pointer to netdev->poll_controller, which has been replaced with ops->ndo_poll_controller in 2.6.31! The correct assignment is present as well, so we just need to remove t