diff options
author | David Decotigny <decot@google.com> | 2011-04-13 11:22:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-15 01:00:31 -0400 |
commit | d30ee670f25ea8f265a2804e2a0a53804cac5185 (patch) | |
tree | 7a8d3b92f26cb3e9570df2989a0b8ea462027a1a /drivers/net/bonding/bond_main.c | |
parent | ef9c7ab4a97d53d9cb4912d13e142f52a30ecd54 (diff) |
net-bonding: Fix minor sparse complaints
This gets rid of minor sparse complaints:
drivers/net/bonding/bond_main.c:4361:4: warning: do-while statement is not a compound statement
drivers/net/bonding/bond_main.c:243:12: warning: symbol 'bond_mode_name' was not declared. Should it be static?
Signed-off-by: David Decotigny <decot@google.com>
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index b51e021354b5..94a371c12d70 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -4357,9 +4357,9 @@ static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb) | |||
4357 | u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0; | 4357 | u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0; |
4358 | 4358 | ||
4359 | if (unlikely(txq >= dev->real_num_tx_queues)) { | 4359 | if (unlikely(txq >= dev->real_num_tx_queues)) { |
4360 | do | 4360 | do { |
4361 | txq -= dev->real_num_tx_queues; | 4361 | txq -= dev->real_num_tx_queues; |
4362 | while (txq >= dev->real_num_tx_queues); | 4362 | } while (txq >= dev->real_num_tx_queues); |
4363 | } | 4363 | } |
4364 | return txq; | 4364 | return txq; |
4365 | } | 4365 | } |