aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/connect.c
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2018-11-27 10:01:51 +1100
committerSteve French <stfrench@microsoft.com>2018-12-23 22:41:11 -0600
commit07fa6010ff939ef6c5a9ae0d230fdfd3bad82722 (patch)
treea4b800f9f18aab5e308a4b5b7293bf69f4aba0cf /fs/cifs/connect.c
parentcifs: change smb2_query_eas to use the compound query-info helper (diff)
downloadlinux-dev-07fa6010ff939ef6c5a9ae0d230fdfd3bad82722.tar.xz
linux-dev-07fa6010ff939ef6c5a9ae0d230fdfd3bad82722.zip
cifs: suppress some implicit-fallthrough warnings
To avoid the warning: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Reviewed-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r--fs/cifs/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index f0be8ed6871f..e4a924ba6325 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -1828,7 +1828,7 @@ cifs_parse_mount_options(const char *mountdata, const char *devname,
vol->password = NULL;
break;
}
- /* Yes it is. Drop down to Opt_pass below.*/
+ /* Fallthrough - to Opt_pass below.*/
case Opt_pass:
/* Obtain the value string */
value = strchr(data, '=');