forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/drivers/net/ethernet/8390/8390.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /* 8390 core for usual drivers */
23
34 static const char version[] =
....@@ -35,9 +36,9 @@
3536 }
3637 EXPORT_SYMBOL(ei_set_multicast_list);
3738
38
-void ei_tx_timeout(struct net_device *dev)
39
+void ei_tx_timeout(struct net_device *dev, unsigned int txqueue)
3940 {
40
- __ei_tx_timeout(dev);
41
+ __ei_tx_timeout(dev, txqueue);
4142 }
4243 EXPORT_SYMBOL(ei_tx_timeout);
4344