[PATCH] emac netpoll fix

netpoll is void(struct net_device *), not int(struct net_device *)

Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Al Viro and committed by Linus Torvalds 530d8e97 791cdc7c

+1 -2
+1 -2
drivers/net/ibm_emac/ibm_emac_core.c
··· 1712 1712 }; 1713 1713 1714 1714 #ifdef CONFIG_NET_POLL_CONTROLLER 1715 - static int emac_netpoll(struct net_device *ndev) 1715 + static void emac_netpoll(struct net_device *ndev) 1716 1716 { 1717 1717 emac_rxeob_dev((void *)ndev, 0); 1718 1718 emac_txeob_dev((void *)ndev, 0); 1719 - return 0; 1720 1719 } 1721 1720 #endif 1722 1721