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

Commit ac23fed8 authored by Yeliz Taneroglu's avatar Yeliz Taneroglu Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: Fixed else after return or break warning



The following patch fixes the checkpatch.pl warning:

drivers/staging/vt6655/hostap.c warning: else is not generally useful after a break or return

Signed-off-by: default avatarYeliz Taneroglu <yeliztaneroglu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3286ae5f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -182,7 +182,6 @@ int vt6655_hostap_set_hostapd(struct vnt_private *pDevice,

	if (val)
		return hostap_enable_hostapd(pDevice, rtnl_locked);
	else
	return hostap_disable_hostapd(pDevice, rtnl_locked);
}