diff options
author | David S. Miller <davem@davemloft.net> | 2012-04-13 15:02:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-13 15:02:35 -0400 |
commit | 64d683c5825003ffb3b127057a165e6bfc26691e (patch) | |
tree | 0c5090aadb4f666d915e12fde69c6a29e64f761c /drivers/net/bonding/bond_main.c | |
parent | be3839520411df2806b188fff053c775a884cfce (diff) |
bonding: Fixup get_tx_queue() op second arg type.
I missed this when fixing up the warning in the previous commit.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 53ee6a0a3681..bb928993db3a 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4820,7 +4820,7 @@ static int bond_validate(struct nlattr *tb[], struct nlattr *data[]) return 0; } -static int bond_get_tx_queues(struct net *net, const struct nlattr *tb[]) +static int bond_get_tx_queues(struct net *net, struct nlattr *tb[]) { return tx_queues; } |