From: Andrea Gelmini Date: Sun, 23 May 2010 19:55:44 +0000 (+0200) Subject: ARM: arch/arm/mach-footbridge/ebsa285-pci.c: Checkpatch cleanup X-Git-Tag: v2.6.35-rc1~264^2^2~8 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=49b95e282608f2683ea5be46a581e819bce20f5f;p=karo-tx-linux.git ARM: arch/arm/mach-footbridge/ebsa285-pci.c: Checkpatch cleanup arch/arm/mach-footbridge/ebsa285-pci.c:22: ERROR: switch and case should be at the same indent Signed-off-by: Andrea Gelmini Signed-off-by: Russell King --- diff --git a/arch/arm/mach-footbridge/ebsa285-pci.c b/arch/arm/mach-footbridge/ebsa285-pci.c index 720c0bac1702..e5ab5bddbc8c 100644 --- a/arch/arm/mach-footbridge/ebsa285-pci.c +++ b/arch/arm/mach-footbridge/ebsa285-pci.c @@ -20,9 +20,9 @@ static int __init ebsa285_map_irq(struct pci_dev *dev, u8 slot, u8 pin) if (dev->vendor == PCI_VENDOR_ID_CONTAQ && dev->device == PCI_DEVICE_ID_CONTAQ_82C693) switch (PCI_FUNC(dev->devfn)) { - case 1: return 14; - case 2: return 15; - case 3: return 12; + case 1: return 14; + case 2: return 15; + case 3: return 12; } return irqmap_ebsa285[(slot + pin) & 3];