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

b43legacy: 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/20200821064412.GA20612@embeddedor
parent 7b54281c
...@@ -189,7 +189,7 @@ return dev->dma.tx_ring1; ...@@ -189,7 +189,7 @@ return dev->dma.tx_ring1;
switch (queue_priority) { switch (queue_priority) {
default: default:
B43legacy_WARN_ON(1); B43legacy_WARN_ON(1);
/* fallthrough */ fallthrough;
case 0: case 0:
ring = dev->dma.tx_ring3; ring = dev->dma.tx_ring3;
break; break;
......
...@@ -1538,7 +1538,7 @@ static int do_request_fw(struct b43legacy_wldev *dev, ...@@ -1538,7 +1538,7 @@ static int do_request_fw(struct b43legacy_wldev *dev,
size = be32_to_cpu(hdr->size); size = be32_to_cpu(hdr->size);
if (size != (*fw)->size - sizeof(struct b43legacy_fw_header)) if (size != (*fw)->size - sizeof(struct b43legacy_fw_header))
goto err_format; goto err_format;
/* fallthrough */ fallthrough;
case B43legacy_FW_TYPE_IV: case B43legacy_FW_TYPE_IV:
if (hdr->ver != 1) if (hdr->ver != 1)
goto err_format; goto err_format;
...@@ -2077,7 +2077,7 @@ static void b43legacy_rate_memory_init(struct b43legacy_wldev *dev) ...@@ -2077,7 +2077,7 @@ static void b43legacy_rate_memory_init(struct b43legacy_wldev *dev)
b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_36MB, 1); b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_36MB, 1);
b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_48MB, 1); b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_48MB, 1);
b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_54MB, 1); b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_54MB, 1);
/* fallthrough */ fallthrough;
case B43legacy_PHYTYPE_B: case B43legacy_PHYTYPE_B:
b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_1MB, 0); b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_1MB, 0);
b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_2MB, 0); b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_2MB, 0);
......
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