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

Commit 96bcbea0 authored by Gulsah Kose's avatar Gulsah Kose Committed by Greg Kroah-Hartman
Browse files

staging: ft1000: ft1000-pcmcia: Removed unnecessary else expression.



This patch fixes "else is not generally useful after a break or return"
checkpatch.pl warning in ft1000_dnld.c

Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2effbbdd
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -168,10 +168,9 @@ u16 get_handshake(struct net_device *dev, u16 expected_value)
		if ((handshake == expected_value)
			|| (handshake == HANDSHAKE_RESET_VALUE)) {
			return handshake;
		} else {
		}
		loopcnt++;
		mdelay(DSP_WAIT_SLEEP_TIME);
		}

	}