[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190124180724.20910-1-malat@debian.org>
Date: Thu, 24 Jan 2019 19:07:23 +0100
From: Mathieu Malaterre <malat@...ian.org>
To: Marcel Holtmann <marcel@...tmann.org>
Cc: Mathieu Malaterre <malat@...ian.org>,
Gustavo Padovan <gustavo.padovan@...labora.co.uk>,
Johan Hedberg <johan.hedberg@...il.com>,
"David S. Miller" <davem@...emloft.net>,
linux-bluetooth@...r.kernel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp
There is a plan to build the kernel with -Wimplicit-fallthrough and
this place in the code produced a warning (W=1).
This commit removes the following warning:
net/bluetooth/l2cap_core.c:4223:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
Cc: Gustavo Padovan <gustavo.padovan@...labora.co.uk>
Signed-off-by: Mathieu Malaterre <malat@...ian.org>
---
net/bluetooth/l2cap_core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 2a7fb517d460..a5b76e24940a 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -4244,6 +4244,7 @@ static inline int l2cap_config_rsp(struct l2cap_conn *conn,
goto done;
break;
}
+ /* fall through */
default:
l2cap_chan_set_err(chan, ECONNRESET);
--
2.19.2
Powered by blists - more mailing lists