diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-11-20 19:32:46 +0100 |
---|---|---|
committer | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-05-18 01:58:40 +0200 |
commit | fc7980915a8601b9a54c547a74dad0fdffc674a5 (patch) | |
tree | 456221eb308ec7d6016225830d04fea5e4760b58 | |
parent | watchdog: Fix fall-through warnings for Clang (diff) | |
download | linux-fc7980915a8601b9a54c547a74dad0fdffc674a5.tar.xz linux-fc7980915a8601b9a54c547a74dad0fdffc674a5.zip |
vxge: Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
by explicitly adding a return statement instead of letting the code fall
through to the next case.
Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
-rw-r--r-- | drivers/net/ethernet/neterion/vxge/vxge-config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/neterion/vxge/vxge-config.c b/drivers/net/ethernet/neterion/vxge/vxge-config.c index 5162b938a1ac..b47d74743f5a 100644 --- a/drivers/net/ethernet/neterion/vxge/vxge-config.c +++ b/drivers/net/ethernet/neterion/vxge/vxge-config.c @@ -3784,6 +3784,7 @@ vxge_hw_rts_rth_data0_data1_get(u32 j, u64 *data0, u64 *data1, VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM1_ENTRY_EN | VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM1_BUCKET_DATA( itable[j]); + return; default: return; } |