mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 15:29:16 +00:00
staging: wilc1000: remove unnecessary braces
Fix checkpatch warning "braces {} are not necessary for single statement blocks" to conform to linux kernel coding style. Signed-off-by: Elizabeth Ferdman <gnudevliz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8d3496c393
commit
4ee4b9da2b
@ -621,9 +621,9 @@ int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count)
|
||||
if (!ret)
|
||||
break;
|
||||
|
||||
if ((reg & 0x1) == 0) {
|
||||
if ((reg & 0x1) == 0)
|
||||
break;
|
||||
}
|
||||
|
||||
counter++;
|
||||
if (counter > 200) {
|
||||
counter = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user