Message ID | 8d72b8a6f1529906672ac458e96d272bc55a1410.1540239684.git.gustavo@embeddedor.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e9904084dd1be8de5bc06eaca75276556ef53e79 |
Delegated to: | Kalle Valo |
Headers | show |
Series | Mark expected switch fall-throughs | expand |
"Gustavo A. R. Silva" <gustavo@embeddedor.com> wrote: > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> 14 patches applied to wireless-drivers-next.git, thanks. e9904084dd1b iwlegacy: 4965-mac: mark expected switch fall-through af71f8fef45c iwlegacy: common: mark expected switch fall-throughs d56b26801e1d orinoco_usb: mark expected switch fall-through d22b8fadd08e prism54: isl_38xx: Mark expected switch fall-through 3d238b9d5048 prism54: isl_ioctl: mark expected switch fall-through 38a0792d08e9 prism54: islpci_dev: mark expected switch fall-through 63fdc952df36 mwifiex: Mark expected switch fall-through 6eba8fd22352 rt2x00: rt2400pci: mark expected switch fall-through 10bb92217747 rt2x00: rt2500pci: mark expected switch fall-through 916e6bbcfcff rt2x00: rt2800lib: mark expected switch fall-throughs 641dd8068ecb rt2x00: rt61pci: mark expected switch fall-through d22d2492a35d ray_cs: mark expected switch fall-throughs 89e54fa4562e rtlwifi: rtl8821ae: phy: Mark expected switch fall-through 7cbbe1597e44 zd1201: mark expected switch fall-through
diff --git a/drivers/net/wireless/intel/iwlegacy/4965-mac.c b/drivers/net/wireless/intel/iwlegacy/4965-mac.c index 280cd8a..6b4488a 100644 --- a/drivers/net/wireless/intel/iwlegacy/4965-mac.c +++ b/drivers/net/wireless/intel/iwlegacy/4965-mac.c @@ -559,7 +559,7 @@ il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in) decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK; break; } - /* fall through if TTAK OK */ + /* fall through - if TTAK OK */ default: if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK)) decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> --- drivers/net/wireless/intel/iwlegacy/4965-mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)