| .. | .. |
|---|
| 271 | 271 | static int smc_open(struct net_device *dev); |
|---|
| 272 | 272 | static int smc_close(struct net_device *dev); |
|---|
| 273 | 273 | 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); |
|---|
| 275 | 275 | static netdev_tx_t smc_start_xmit(struct sk_buff *skb, |
|---|
| 276 | 276 | struct net_device *dev); |
|---|
| 277 | 277 | static irqreturn_t smc_interrupt(int irq, void *dev_id); |
|---|
| .. | .. |
|---|
| 1178 | 1178 | |
|---|
| 1179 | 1179 | /*====================================================================*/ |
|---|
| 1180 | 1180 | |
|---|
| 1181 | | -static void smc_tx_timeout(struct net_device *dev) |
|---|
| 1181 | +static void smc_tx_timeout(struct net_device *dev, unsigned int txqueue) |
|---|
| 1182 | 1182 | { |
|---|
| 1183 | 1183 | struct smc_private *smc = netdev_priv(dev); |
|---|
| 1184 | 1184 | unsigned int ioaddr = dev->base_addr; |
|---|