Commit 104aba8d authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva

powerpc/smp: Fix fall-through warning for Clang

Fix the following fallthrough warning:

arch/powerpc/platforms/powermac/smp.c:149:3: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
Reported-by: default avatarkernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/lkml/60ef0750.I8J+C6KAtb0xVOAa%25lkp@intel.com/Signed-off-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
parent afbd0d29
...@@ -146,6 +146,7 @@ static inline void psurge_clr_ipi(int cpu) ...@@ -146,6 +146,7 @@ static inline void psurge_clr_ipi(int cpu)
switch(psurge_type) { switch(psurge_type) {
case PSURGE_DUAL: case PSURGE_DUAL:
out_8(psurge_sec_intr, ~0); out_8(psurge_sec_intr, ~0);
break;
case PSURGE_NONE: case PSURGE_NONE:
break; break;
default: default:
......
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