From: David S. Miller Date: Fri, 13 Apr 2012 19:02:35 +0000 (-0400) Subject: bonding: Fixup get_tx_queue() op second arg type. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=64d683c5825003ffb3b127057a165e6bfc26691e;p=linux-beck.git 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 --- 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; }