diff options
author | Joe Perches <joe@perches.com> | 2020-03-10 21:47:30 +0100 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2020-03-25 12:39:37 +0100 |
commit | 2c7749b90536b76795eab4cada028c2ddad25fc3 (patch) | |
tree | fa2de931b3242931a0e8f018b79743b28515fd2d /drivers/s390/char/hmcdrv_ftp.c | |
parent | s390/cpum_sf: Fix wrong page count in error message (diff) | |
download | linux-2c7749b90536b76795eab4cada028c2ddad25fc3.tar.xz linux-2c7749b90536b76795eab4cada028c2ddad25fc3.zip |
s390: use fallthrough;
Convert the various uses of fallthrough comments to fallthrough;
Done via script
Link: https://lore.kernel.org/lkml/b56602fcf79f849e733e7b521bb0e17895d390fa.1582230379.git.joe.com/
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'drivers/s390/char/hmcdrv_ftp.c')
-rw-r--r-- | drivers/s390/char/hmcdrv_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/hmcdrv_ftp.c b/drivers/s390/char/hmcdrv_ftp.c index 0e70397d6e04..37ee8f698c3b 100644 --- a/drivers/s390/char/hmcdrv_ftp.c +++ b/drivers/s390/char/hmcdrv_ftp.c @@ -137,7 +137,7 @@ static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp) while ((*cmd != '\0') && !iscntrl(*cmd)) ++cmd; ftp->fname = start; - /* fall through */ + fallthrough; default: *cmd = '\0'; break; |