kernel/drivers/net/ethernet/8390/8390p.c
.. .. @@ -1,3 +1,4 @@ 1 +// SPDX-License-Identifier: GPL-2.0-only1 2 /* 8390 core for ISA devices needing bus delays */ 2 3 3 4 static const char version[] = .. .. @@ -40,9 +41,9 @@ 40 41 } 41 42 EXPORT_SYMBOL(eip_set_multicast_list); 42 43 43 -void eip_tx_timeout(struct net_device *dev)44 +void eip_tx_timeout(struct net_device *dev, unsigned int txqueue)44 45 { 45 - __ei_tx_timeout(dev);46 + __ei_tx_timeout(dev, txqueue);46 47 } 47 48 EXPORT_SYMBOL(eip_tx_timeout); 48 49