Commit 5ddd9975 authored by Ross Schmidt's avatar Ross Schmidt Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: clean up switch case indentation



Move cases to align with switch indentation to fix coding style issues
and clear checkpatch errors.

ERROR: switch and case should be at the same indent

Signed-off-by: default avatarRoss Schmidt <ross.schm.dev@gmail.com>
Link: https://lore.kernel.org/r/20201110041008.15847-6-ross.schm.dev@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa7c4586
Loading
Loading
Loading
Loading
+109 −110
Original line number Diff line number Diff line
@@ -877,7 +877,6 @@ static int rtw_wx_set_mode(struct net_device *dev, struct iw_request_info *a,
		networkType = Ndis802_11Infrastructure;
		DBG_871X("set_mode = IW_MODE_INFRA\n");
		break;

	default:
		ret = -EINVAL;
		RT_TRACE(_module_rtl871x_ioctl_os_c, _drv_err_, ("\n Mode: %s is not supported \n", iw_operation_mode[wrqu->mode]));
+7 −7

File changed.

Contains only whitespace changes.