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-Tag: v3.12-rc1~3113^2~466 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=64d683c5825003ffb3b127057a165e6bfc26691e;p=kernel%2Fkernel-generic.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 53ee6a0..bb92899 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; }