Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ee4b9da authored by Elizabeth Ferdman's avatar Elizabeth Ferdman Committed by Greg Kroah-Hartman
Browse files

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: default avatarElizabeth Ferdman <gnudevliz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8d3496c3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;