From: Joe Perches Date: Mon, 29 Jun 2015 21:30:39 +0000 (-0700) Subject: powerpc: Remove redundant breaks X-Git-Tag: Ubuntu-5.10.0-12.13~14164^2~67 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=a825ac078b50266fb09168547752dd73c2fd4b4a;p=mirror_ubuntu-hirsute-kernel.git powerpc: Remove redundant breaks break; break; isn't useful. Remove one. Signed-off-by: Joe Perches Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/kernel/kvm.c b/arch/powerpc/kernel/kvm.c index 33aa4ddf597d..9ad37f827a97 100644 --- a/arch/powerpc/kernel/kvm.c +++ b/arch/powerpc/kernel/kvm.c @@ -649,7 +649,6 @@ static void kvm_check_ins(u32 *inst, u32 features) kvm_patch_ins_mtsrin(inst, inst_rt, inst_rb); } break; - break; #endif } diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index e599259d84fc..7a39f6cb8a3d 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c @@ -1987,7 +1987,6 @@ memex(void) case '^': adrs -= size; break; - break; case '/': if (nslash > 0) adrs -= 1 << nslash;