diff options
| author | Gustavo A. R. Silva <[email protected]> | 2020-07-08 20:18:23 +0000 |
|---|---|---|
| committer | Marcel Holtmann <[email protected]> | 2020-07-10 17:09:42 +0000 |
| commit | 19186c7b45c134820ea6fde3165a2cf30c1ace47 (patch) | |
| tree | 37ab2aeadbc31065baf4e733edb26bb234e9150d /net/bluetooth/l2cap_sock.c | |
| parent | Bluetooth: Fix slab-out-of-bounds read in hci_extended_inquiry_result_evt() (diff) | |
| download | kernel-19186c7b45c134820ea6fde3165a2cf30c1ace47.tar.gz kernel-19186c7b45c134820ea6fde3165a2cf30c1ace47.zip | |
Bluetooth: core: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary
fall-through markings when it is the case.
[1] https://www.kernel.org/doc/html/latest/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
Diffstat (limited to 'net/bluetooth/l2cap_sock.c')
| -rw-r--r-- | net/bluetooth/l2cap_sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index a995d2c51fa7..738a5345fa21 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c @@ -284,7 +284,7 @@ static int l2cap_sock_listen(struct socket *sock, int backlog) case L2CAP_MODE_STREAMING: if (!disable_ertm) break; - /* fall through */ + fallthrough; default: err = -EOPNOTSUPP; goto done; @@ -760,7 +760,7 @@ static int l2cap_sock_setsockopt_old(struct socket *sock, int optname, case L2CAP_MODE_STREAMING: if (!disable_ertm) break; - /* fall through */ + fallthrough; default: err = -EINVAL; break; |
