Commit 2b203e3c authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller

mwl8k: remove unnecessary break after return

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 18a12348
...@@ -1633,22 +1633,17 @@ static int mwl8k_tid_queue_mapping(u8 tid) ...@@ -1633,22 +1633,17 @@ static int mwl8k_tid_queue_mapping(u8 tid)
case 0: case 0:
case 3: case 3:
return IEEE80211_AC_BE; return IEEE80211_AC_BE;
break;
case 1: case 1:
case 2: case 2:
return IEEE80211_AC_BK; return IEEE80211_AC_BK;
break;
case 4: case 4:
case 5: case 5:
return IEEE80211_AC_VI; return IEEE80211_AC_VI;
break;
case 6: case 6:
case 7: case 7:
return IEEE80211_AC_VO; return IEEE80211_AC_VO;
break;
default: default:
return -1; return -1;
break;
} }
} }
......
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