]> asedeno.scripts.mit.edu Git - linux.git/commit
i3c: master: dw-i3c-master: mark expected switch fall-through
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Mon, 11 Feb 2019 22:14:13 +0000 (16:14 -0600)
committerBoris Brezillon <boris.brezillon@collabora.com>
Thu, 28 Feb 2019 08:47:53 +0000 (09:47 +0100)
commit988bb4a1937bd083267444dda21b901dc6a959b3
treec39a4f0dc472c1f32a291b3f29a6fbbbffdf7aad
parent65907c5d1ed1dbc03b3b4f2a438101a7b7064389
i3c: master: dw-i3c-master: mark expected switch fall-through

In preparation to enabling -Wimplicit-fallthrough, mark switch
cases where we are expecting to fall through.

This patch fixes the following warning:

drivers/i3c/master/dw-i3c-master.c: In function ‘dw_i3c_master_bus_init’:
drivers/i3c/master/dw-i3c-master.c:603:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
   if (ret)
      ^
drivers/i3c/master/dw-i3c-master.c:605:2: note: here
  case I3C_BUS_MODE_PURE:
  ^~~~

Warning level 3 was used: -Wimplicit-fallthrough=3

This patch is part of the ongoing efforts to enable
-Wimplicit-fallthrough.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Acked-by: Vitor Soares <vitor.soares@synopsys.com>
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
drivers/i3c/master/dw-i3c-master.c