forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/drivers/net/ethernet/8390/8390p.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /* 8390 core for ISA devices needing bus delays */
23
34 static const char version[] =
....@@ -40,9 +41,9 @@
4041 }
4142 EXPORT_SYMBOL(eip_set_multicast_list);
4243
43
-void eip_tx_timeout(struct net_device *dev)
44
+void eip_tx_timeout(struct net_device *dev, unsigned int txqueue)
4445 {
45
- __ei_tx_timeout(dev);
46
+ __ei_tx_timeout(dev, txqueue);
4647 }
4748 EXPORT_SYMBOL(eip_tx_timeout);
4849