Commit 3a26036f authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman

staging: rtl8188eu: reorder switch cases and remove default break

Reorder the cases of a switch statement to be in ascending order.
Remove unrequired break from default case.
Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9d4bedcb
...@@ -264,18 +264,17 @@ bool Hal_MappingOutPipe(struct adapter *adapter, u8 numoutpipe) ...@@ -264,18 +264,17 @@ bool Hal_MappingOutPipe(struct adapter *adapter, u8 numoutpipe)
bool result = true; bool result = true;
switch (numoutpipe) { switch (numoutpipe) {
case 1:
one_out_pipe(adapter);
break;
case 2: case 2:
two_out_pipe(adapter, wifi_cfg); two_out_pipe(adapter, wifi_cfg);
break; break;
case 3: case 3:
three_out_pipe(adapter, wifi_cfg); three_out_pipe(adapter, wifi_cfg);
break; break;
case 1:
one_out_pipe(adapter);
break;
default: default:
result = false; result = false;
break;
} }
return result; return result;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment