Skip to content

Commit 104aba8

Browse files
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: kernel test robot <[email protected]> Link: https://lore.kernel.org/lkml/60ef0750.I8J+C6KAtb0xVOAa%[email protected]/ Signed-off-by: Gustavo A. R. Silva <[email protected]>
1 parent afbd0d2 commit 104aba8

File tree

1 file changed

+1
-0
lines changed
  • arch/powerpc/platforms/powermac

1 file changed

+1
-0
lines changed

arch/powerpc/platforms/powermac/smp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ static inline void psurge_clr_ipi(int cpu)
146146
switch(psurge_type) {
147147
case PSURGE_DUAL:
148148
out_8(psurge_sec_intr, ~0);
149+
break;
149150
case PSURGE_NONE:
150151
break;
151152
default:

0 commit comments

Comments
 (0)