Commit 26027f42 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by David S. Miller

arcnet: arc-rimi: Mark expected switch fall-throughs

Mark switch cases where we are expecting to fall through.

This patch fixes the following warnings (Building: powerpc allyesconfig):

drivers/net/arcnet/arc-rimi.c: In function 'arcrimi_setup':
include/linux/printk.h:304:2: warning: this statement may fall through [-Wimplicit-fallthrough=]
  printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/net/arcnet/arc-rimi.c:365:3: note: in expansion of macro 'pr_err'
   pr_err("Too many arguments\n");
   ^~~~~~
drivers/net/arcnet/arc-rimi.c:366:2: note: here
  case 3:  /* Node ID */
  ^~~~
drivers/net/arcnet/arc-rimi.c:367:8: warning: this statement may fall through [-Wimplicit-fallthrough=]
   node = ints[3];
   ~~~~~^~~~~~~~~
drivers/net/arcnet/arc-rimi.c:368:2: note: here
  case 2:  /* IRQ */
  ^~~~
drivers/net/arcnet/arc-rimi.c:369:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
   irq = ints[2];
   ~~~~^~~~~~~~~
drivers/net/arcnet/arc-rimi.c:370:2: note: here
  case 1:  /* IO address */
  ^~~~
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Reviewed-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 56f37a3f
...@@ -363,10 +363,13 @@ static int __init arcrimi_setup(char *s) ...@@ -363,10 +363,13 @@ static int __init arcrimi_setup(char *s)
switch (ints[0]) { switch (ints[0]) {
default: /* ERROR */ default: /* ERROR */
pr_err("Too many arguments\n"); pr_err("Too many arguments\n");
/* Fall through */
case 3: /* Node ID */ case 3: /* Node ID */
node = ints[3]; node = ints[3];
/* Fall through */
case 2: /* IRQ */ case 2: /* IRQ */
irq = ints[2]; irq = ints[2];
/* Fall through */
case 1: /* IO address */ case 1: /* IO address */
io = ints[1]; io = ints[1];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment