kernel/drivers/net/ethernet/8390/8390.c
.. .. @@ -1,3 +1,4 @@ 1 +// SPDX-License-Identifier: GPL-2.0-only1 2 /* 8390 core for usual drivers */ 2 3 3 4 static const char version[] = .. .. @@ -35,9 +36,9 @@ 35 36 } 36 37 EXPORT_SYMBOL(ei_set_multicast_list); 37 38 38 -void ei_tx_timeout(struct net_device *dev)39 +void ei_tx_timeout(struct net_device *dev, unsigned int txqueue)39 40 { 40 - __ei_tx_timeout(dev);41 + __ei_tx_timeout(dev, txqueue);41 42 } 42 43 EXPORT_SYMBOL(ei_tx_timeout); 43 44