hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/net/ethernet/smsc/smc91c92_cs.c
....@@ -271,7 +271,7 @@
271271 static int smc_open(struct net_device *dev);
272272 static int smc_close(struct net_device *dev);
273273 static int smc_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
274
-static void smc_tx_timeout(struct net_device *dev);
274
+static void smc_tx_timeout(struct net_device *dev, unsigned int txqueue);
275275 static netdev_tx_t smc_start_xmit(struct sk_buff *skb,
276276 struct net_device *dev);
277277 static irqreturn_t smc_interrupt(int irq, void *dev_id);
....@@ -1178,7 +1178,7 @@
11781178
11791179 /*====================================================================*/
11801180
1181
-static void smc_tx_timeout(struct net_device *dev)
1181
+static void smc_tx_timeout(struct net_device *dev, unsigned int txqueue)
11821182 {
11831183 struct smc_private *smc = netdev_priv(dev);
11841184 unsigned int ioaddr = dev->base_addr;