cfg80211: add some missing fall through annotations
There are talks about enabling -Wimplicit-fallthrough warnings in the mainline and it is already enabled in linux-next. Add all the missing annotations to prevent warnings when this happens. And in one case, remove the extra text from the annotation so that the compiler recognizes it. Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:

committed by
Johannes Berg

parent
30db641ef4
commit
925b5978cd
@@ -1851,6 +1851,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 1:
|
||||
if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
|
||||
sizeof(u32) * rdev->wiphy.n_cipher_suites,
|
||||
@@ -1897,6 +1898,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 2:
|
||||
if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
|
||||
rdev->wiphy.interface_modes))
|
||||
@@ -1904,6 +1906,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 3:
|
||||
nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
|
||||
if (!nl_bands)
|
||||
@@ -1929,6 +1932,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->chan_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
default:
|
||||
/* add frequencies */
|
||||
nl_freqs = nla_nest_start(
|
||||
@@ -1982,6 +1986,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 4:
|
||||
nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
|
||||
if (!nl_cmds)
|
||||
@@ -2008,6 +2013,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 5:
|
||||
if (rdev->ops->remain_on_channel &&
|
||||
(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
|
||||
@@ -2025,6 +2031,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 6:
|
||||
#ifdef CONFIG_PM
|
||||
if (nl80211_send_wowlan(msg, rdev, state->split))
|
||||
@@ -2035,6 +2042,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
#else
|
||||
state->split_start++;
|
||||
#endif
|
||||
/* fall through */
|
||||
case 7:
|
||||
if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
|
||||
rdev->wiphy.software_iftypes))
|
||||
@@ -2047,6 +2055,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
|
||||
state->split_start++;
|
||||
if (state->split)
|
||||
break;
|
||||
/* fall through */
|
||||
case 8:
|
||||
if ((rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
|
||||
nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
|
||||
|
Reference in New Issue
Block a user