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:
Elizabeth Ferdman 2016-09-30 12:15:09 -07:00 committed by Greg Kroah-Hartman
parent 8d3496c393
commit 4ee4b9da2b

View file

@ -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;