aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/smc9194.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/smc9194.c')
-rw-r--r--drivers/net/smc9194.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/smc9194.c b/drivers/net/smc9194.c
index 0a1b6f40108..934a1201282 100644
--- a/drivers/net/smc9194.c
+++ b/drivers/net/smc9194.c
@@ -299,7 +299,8 @@ static void smc_hardware_send_packet( struct net_device * dev );
299 . to store the packet, I call this routine, which either sends it 299 . to store the packet, I call this routine, which either sends it
300 . now, or generates an interrupt when the card is ready for the 300 . now, or generates an interrupt when the card is ready for the
301 . packet */ 301 . packet */
302static int smc_wait_to_send_packet( struct sk_buff * skb, struct net_device *dev ); 302static netdev_tx_t smc_wait_to_send_packet( struct sk_buff * skb,
303 struct net_device *dev );
303 304
304/* this does a soft reset on the device */ 305/* this does a soft reset on the device */
305static void smc_reset( int ioaddr ); 306static void smc_reset( int ioaddr );
@@ -487,7 +488,8 @@ static void smc_setmulticast( int ioaddr, int count, struct dev_mc_list * addrs
487 . o (NO): Enable interrupts and let the interrupt handler deal with it. 488 . o (NO): Enable interrupts and let the interrupt handler deal with it.
488 . o (YES):Send it now. 489 . o (YES):Send it now.
489*/ 490*/
490static int smc_wait_to_send_packet( struct sk_buff * skb, struct net_device * dev ) 491static netdev_tx_t smc_wait_to_send_packet(struct sk_buff *skb,
492 struct net_device *dev)
491{ 493{
492 struct smc_local *lp = netdev_priv(dev); 494 struct smc_local *lp = netdev_priv(dev);
493 unsigned int ioaddr = dev->base_addr; 495 unsigned int ioaddr = dev->base_addr;