From: Gustavo A. R. Silva Date: Mon, 3 Sep 2018 19:38:06 +0000 (-0500) Subject: 9p: fix spelling mistake in fall-through annotation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=426d5a0f9733ecc2c4d7b252672fa8b1970d1c91;p=linux.git 9p: fix spelling mistake in fall-through annotation Replace "fallthough" with a proper "fall through" annotation. This fix is part of the ongoing efforts to enabling -Wimplicit-fallthrough Link: http://lkml.kernel.org/r/20180903193806.GA11258@embeddedor.com Addresses-Coverity-ID: 402012 ("Missing break in switch") Signed-off-by: Gustavo A. R. Silva Signed-off-by: Dominique Martinet --- diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c index 5f2e48d41d725..374bc1c720481 100644 --- a/fs/9p/vfs_file.c +++ b/fs/9p/vfs_file.c @@ -216,7 +216,7 @@ static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl) break; default: WARN_ONCE(1, "unknown lock status code: %d\n", status); - /* fallthough */ + /* fall through */ case P9_LOCK_ERROR: case P9_LOCK_GRACE: res = -ENOLCK;