Commit 7b54281c authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Kalle Valo

b43: Use fallthrough pseudo-keyword

Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1].

[1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-throughSigned-off-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200821064218.GA19502@embeddedor
parent 3f95e92c
...@@ -1317,7 +1317,7 @@ static struct b43_dmaring *select_ring_by_priority(struct b43_wldev *dev, ...@@ -1317,7 +1317,7 @@ static struct b43_dmaring *select_ring_by_priority(struct b43_wldev *dev,
switch (queue_prio) { switch (queue_prio) {
default: default:
B43_WARN_ON(1); B43_WARN_ON(1);
/* fallthrough */ fallthrough;
case 0: case 0:
ring = dev->dma.tx_ring_AC_VO; ring = dev->dma.tx_ring_AC_VO;
break; break;
......
...@@ -1874,7 +1874,7 @@ static void b43_handle_firmware_panic(struct b43_wldev *dev) ...@@ -1874,7 +1874,7 @@ static void b43_handle_firmware_panic(struct b43_wldev *dev)
switch (reason) { switch (reason) {
default: default:
b43dbg(dev->wl, "The panic reason is unknown.\n"); b43dbg(dev->wl, "The panic reason is unknown.\n");
/* fallthrough */ fallthrough;
case B43_FWPANIC_DIE: case B43_FWPANIC_DIE:
/* Do not restart the controller or firmware. /* Do not restart the controller or firmware.
* The device is nonfunctional from now on. * The device is nonfunctional from now on.
...@@ -2268,7 +2268,7 @@ int b43_do_request_fw(struct b43_request_fw_context *ctx, ...@@ -2268,7 +2268,7 @@ int b43_do_request_fw(struct b43_request_fw_context *ctx,
size = be32_to_cpu(hdr->size); size = be32_to_cpu(hdr->size);
if (size != ctx->blob->size - sizeof(struct b43_fw_header)) if (size != ctx->blob->size - sizeof(struct b43_fw_header))
goto err_format; goto err_format;
/* fallthrough */ fallthrough;
case B43_FW_TYPE_IV: case B43_FW_TYPE_IV:
if (hdr->ver != 1) if (hdr->ver != 1)
goto err_format; goto err_format;
...@@ -3180,7 +3180,7 @@ static void b43_rate_memory_init(struct b43_wldev *dev) ...@@ -3180,7 +3180,7 @@ static void b43_rate_memory_init(struct b43_wldev *dev)
b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1); b43_rate_memory_write(dev, B43_OFDM_RATE_36MB, 1);
b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1); b43_rate_memory_write(dev, B43_OFDM_RATE_48MB, 1);
b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1); b43_rate_memory_write(dev, B43_OFDM_RATE_54MB, 1);
/* fallthrough */ fallthrough;
case B43_PHYTYPE_B: case B43_PHYTYPE_B:
b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0); b43_rate_memory_write(dev, B43_CCK_RATE_1MB, 0);
b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0); b43_rate_memory_write(dev, B43_CCK_RATE_2MB, 0);
...@@ -5331,7 +5331,7 @@ static void b43_supported_bands(struct b43_wldev *dev, bool *have_2ghz_phy, ...@@ -5331,7 +5331,7 @@ static void b43_supported_bands(struct b43_wldev *dev, bool *have_2ghz_phy,
/* There are 14e4:4321 PCI devs with 2.4 GHz BCM4321 (N-PHY) */ /* There are 14e4:4321 PCI devs with 2.4 GHz BCM4321 (N-PHY) */
if (dev->phy.type != B43_PHYTYPE_G) if (dev->phy.type != B43_PHYTYPE_G)
break; break;
/* fall through */ fallthrough;
case 0x4313: /* BCM4311 */ case 0x4313: /* BCM4311 */
case 0x431a: /* BCM4318 */ case 0x431a: /* BCM4318 */
case 0x432a: /* BCM4321 */ case 0x432a: /* BCM4321 */
......
...@@ -3239,7 +3239,7 @@ static void b43_nphy_workarounds_rev3plus(struct b43_wldev *dev) ...@@ -3239,7 +3239,7 @@ static void b43_nphy_workarounds_rev3plus(struct b43_wldev *dev)
if (!(dev->phy.rev >= 4 && if (!(dev->phy.rev >= 4 &&
b43_current_band(dev->wl) == NL80211_BAND_2GHZ)) b43_current_band(dev->wl) == NL80211_BAND_2GHZ))
break; break;
/* FALL THROUGH */ fallthrough;
case 0: case 0:
case 1: case 1:
b43_ntab_write_bulk(dev, B43_NTAB16(8, 0x08), 4, vmid); b43_ntab_write_bulk(dev, B43_NTAB16(8, 0x08), 4, vmid);
......
...@@ -294,7 +294,7 @@ static struct b43_pio_txqueue *select_queue_by_priority(struct b43_wldev *dev, ...@@ -294,7 +294,7 @@ static struct b43_pio_txqueue *select_queue_by_priority(struct b43_wldev *dev,
switch (queue_prio) { switch (queue_prio) {
default: default:
B43_WARN_ON(1); B43_WARN_ON(1);
/* fallthrough */ fallthrough;
case 0: case 0:
q = dev->pio.tx_queue_AC_VO; q = dev->pio.tx_queue_AC_VO;
break; break;
......
...@@ -3717,7 +3717,7 @@ const u32 *b43_nphy_get_tx_gain_table(struct b43_wldev *dev) ...@@ -3717,7 +3717,7 @@ const u32 *b43_nphy_get_tx_gain_table(struct b43_wldev *dev)
case 5: case 5:
if (sprom->fem.ghz2.extpa_gain == 3) if (sprom->fem.ghz2.extpa_gain == 3)
return b43_ntab_tx_gain_epa_rev3_hi_pwr_2g; return b43_ntab_tx_gain_epa_rev3_hi_pwr_2g;
/* fall through */ fallthrough;
case 4: case 4:
case 3: case 3:
return b43_ntab_tx_gain_epa_rev3_2g; return b43_ntab_tx_gain_epa_rev3_2g;
......
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