| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * linux/drivers/acorn/net/ether1.c |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 1996-2000 Russell King |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 8 | | - * published by the Free Software Foundation. |
|---|
| 9 | 6 | * |
|---|
| 10 | 7 | * Acorn ether1 driver (82586 chip) for Acorn machines |
|---|
| 11 | 8 | * |
|---|
| .. | .. |
|---|
| 69 | 66 | static irqreturn_t ether1_interrupt(int irq, void *dev_id); |
|---|
| 70 | 67 | static int ether1_close(struct net_device *dev); |
|---|
| 71 | 68 | static void ether1_setmulticastlist(struct net_device *dev); |
|---|
| 72 | | -static void ether1_timeout(struct net_device *dev); |
|---|
| 69 | +static void ether1_timeout(struct net_device *dev, unsigned int txqueue); |
|---|
| 73 | 70 | |
|---|
| 74 | 71 | /* ------------------------------------------------------------------------- */ |
|---|
| 75 | 72 | |
|---|
| .. | .. |
|---|
| 653 | 650 | } |
|---|
| 654 | 651 | |
|---|
| 655 | 652 | static void |
|---|
| 656 | | -ether1_timeout(struct net_device *dev) |
|---|
| 653 | +ether1_timeout(struct net_device *dev, unsigned int txqueue) |
|---|
| 657 | 654 | { |
|---|
| 658 | 655 | printk(KERN_WARNING "%s: transmit timeout, network cable problem?\n", |
|---|
| 659 | 656 | dev->name); |
|---|