]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: sun4i-emac: remove erroneous assignment
authorArnd Bergmann <arnd@arndb.de>
Mon, 3 Jun 2013 11:36:50 +0000 (11:36 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 5 Jun 2013 00:34:00 +0000 (17:34 -0700)
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 the wrong one.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Richard Genoud <richard.genoud@gmail.com>
Acked-by: Stefan Roese <sr@denx.de>
Acked-by: Maxime Ripard <maxime.ripard@anandra.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/allwinner/sun4i-emac.c

index 26083cdc25ab3fd2e6a13c9fc75ee864f1095cc8..0bb2f4af9952025f377c2a388de4e4f6842d5acc 100644 (file)
@@ -869,10 +869,6 @@ static int emac_probe(struct platform_device *pdev)
        ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
        ndev->ethtool_ops = &emac_ethtool_ops;
 
-#ifdef CONFIG_NET_POLL_CONTROLLER
-       ndev->poll_controller = &emac_poll_controller;
-#endif
-
        platform_set_drvdata(pdev, ndev);
 
        /* Carrier starts down, phylib will bring it up */