linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp
@ 2019-01-24 18:07 Mathieu Malaterre
  2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
  2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
  0 siblings, 2 replies; 5+ messages in thread
From: Mathieu Malaterre @ 2019-01-24 18:07 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Mathieu Malaterre, Gustavo Padovan, Johan Hedberg,
	David S. Miller, linux-bluetooth, netdev, linux-kernel

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@collabora.co.uk>
Signed-off-by: Mathieu Malaterre <malat@debian.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


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-25  8:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-24 18:07 [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Mathieu Malaterre
2019-01-24 18:07 ` [PATCH 2/2] Bluetooth: Correctly annotate implicit fall through in __rfcomm_dlc_close Mathieu Malaterre
2019-01-25  8:09   ` Mathieu Malaterre
2019-01-25  7:56 ` [PATCH 1/2] Bluetooth: Annotate implicit fall through in l2cap_config_rsp Marcel Holtmann
2019-01-25  8:08   ` Mathieu Malaterre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).