From: Gustavo A. R. Silva Date: Fri, 3 Nov 2017 23:03:27 +0000 (-0500) Subject: watchdog: watchdog_dev: mark expected switch fall-through X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e2af3092d05a814d670a045df983fcefb18e7c14;p=linux.git watchdog: watchdog_dev: mark expected switch fall-through In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Notice that in this particular case I replaced "Fall" with a proper "fall through" comment, which is what GCC is expecting to find. Signed-off-by: Gustavo A. R. Silva Reviewed-by: Guenter Roeck Signed-off-by: Guenter Roeck Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/watchdog_dev.c b/drivers/watchdog/watchdog_dev.c index 95b96f3cb36f7..eb35700962987 100644 --- a/drivers/watchdog/watchdog_dev.c +++ b/drivers/watchdog/watchdog_dev.c @@ -720,7 +720,7 @@ static long watchdog_ioctl(struct file *file, unsigned int cmd, err = watchdog_ping(wdd); if (err < 0) break; - /* Fall */ + /* fall through */ case WDIOC_GETTIMEOUT: /* timeout == 0 means that we don't know the timeout */ if (wdd->timeout == 0) {