diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-12 08:55:22 +0200 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2019-08-12 09:53:13 -0700 |
commit | 94707d90b7d6ea5552078e2c3b78b7f1e29ee528 (patch) | |
tree | 260020409f0e24eecc503dce365d2d30e07bf7e7 | |
parent | 782d7a217eb63353dbfd81fb88b24e600bc6bd9c (diff) | |
download | linux-94707d90b7d6ea5552078e2c3b78b7f1e29ee528.tar.bz2 |
ia64: annotate switch fallthroughs in ia64_handle_unaligned
Replace the "no break" comments with something that the compiler
recognizes.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lkml.kernel.org/r/20190812065524.19959-3-hch@lst.de
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | arch/ia64/kernel/unaligned.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/kernel/unaligned.c b/arch/ia64/kernel/unaligned.c index eb7d5df59fa3..2d4e65ba5c3e 100644 --- a/arch/ia64/kernel/unaligned.c +++ b/arch/ia64/kernel/unaligned.c @@ -1431,7 +1431,7 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) if (u.insn.x) /* oops, really a semaphore op (cmpxchg, etc) */ goto failure; - /* no break */ + /*FALLTHRU*/ case LDS_IMM_OP: case LDSA_IMM_OP: case LDFS_OP: @@ -1459,7 +1459,7 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) if (u.insn.x) /* oops, really a semaphore op (cmpxchg, etc) */ goto failure; - /* no break */ + /*FALLTHRU*/ case LD_IMM_OP: case LDA_IMM_OP: case LDBIAS_IMM_OP: @@ -1475,7 +1475,7 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) if (u.insn.x) /* oops, really a semaphore op (cmpxchg, etc) */ goto failure; - /* no break */ + /*FALLTHRU*/ case ST_IMM_OP: case STREL_IMM_OP: ret = emulate_store_int(ifa, u.insn, regs); |