staging: wilc1000: Remove unnecessary 'else'
This patch removes the checkpatch.pl warning: else is not generally useful after a break or return Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ac4cf190fc
commit
6e4d1a8d7d
|
@ -620,8 +620,7 @@ int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count)
|
||||||
|
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
break;
|
break;
|
||||||
else
|
vmm_table[i] = 0x0;
|
||||||
vmm_table[i] = 0x0;
|
|
||||||
|
|
||||||
acquire_bus(wilc, ACQUIRE_AND_WAKEUP);
|
acquire_bus(wilc, ACQUIRE_AND_WAKEUP);
|
||||||
counter = 0;
|
counter = 0;
|
||||||
|
|
Loading…
Reference in New Issue