Re: [PATCH] ARM: KVM: Add missing break;

2013-04-14 Thread Marc Zyngier
Hi Joe, On Sat, 13 Apr 2013 22:55:45 -0700, Joe Perches wrote: > commit 3401d54696f ("KVM: ARM: Introduce KVM_ARM_SET_DEVICE_ADDR ioctl") > added the case, but omitted adding break; [...] Already reported here: http://lists.infradead.org/pipermail/linux-arm-kernel/2013-April/160127.html > $

Re: [PATCH] ARM: KVM: Add missing break;

2013-04-14 Thread Marc Zyngier
Hi Joe, On Sat, 13 Apr 2013 22:55:45 -0700, Joe Perches j...@perches.com wrote: commit 3401d54696f (KVM: ARM: Introduce KVM_ARM_SET_DEVICE_ADDR ioctl) added the case, but omitted adding break; [...] Already reported here:

[PATCH] ARM: KVM: Add missing break;

2013-04-13 Thread Joe Perches
commit 3401d54696f ("KVM: ARM: Introduce KVM_ARM_SET_DEVICE_ADDR ioctl") added the case, but omitted adding break; Add it. Found with grep version 2.54 pattern: $ grep -rP --include=*.[ch] "\b(\w+)\s*=[^;]+;\s*(?:case\s+\w+:|default:)\s*\1\s*=" Signed-off-by: Joe Perches --- diff --git

[PATCH] ARM: KVM: Add missing break;

2013-04-13 Thread Joe Perches
commit 3401d54696f (KVM: ARM: Introduce KVM_ARM_SET_DEVICE_ADDR ioctl) added the case, but omitted adding break; Add it. Found with grep version 2.54 pattern: $ grep -rP --include=*.[ch] \b(\w+)\s*=[^;]+;\s*(?:case\s+\w+:|default:)\s*\1\s*= Signed-off-by: Joe Perches j...@perches.com --- diff