summaryrefslogtreecommitdiffstats
path: root/target/linux/atheros/patches-3.10/105-ar2315_pci.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-06-10 09:05:36 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-06-10 09:05:36 +0000
commit5427e47e59272c7e11554b1c654a997173c7f941 (patch)
treec6637514d3c61d188bb8cfde69a6aad9b46dd499 /target/linux/atheros/patches-3.10/105-ar2315_pci.patch
parent630eac6638a0a351226258b894dd7cb65e8bb979 (diff)
downloadmaster-31e0f0ae-5427e47e59272c7e11554b1c654a997173c7f941.tar.gz
master-31e0f0ae-5427e47e59272c7e11554b1c654a997173c7f941.tar.bz2
master-31e0f0ae-5427e47e59272c7e11554b1c654a997173c7f941.zip
atheros: remove parentheses around return values
Remove parentheses around return values since return is no a function, as suggested by checkpatch. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> SVN-Revision: 41083
Diffstat (limited to 'target/linux/atheros/patches-3.10/105-ar2315_pci.patch')
-rw-r--r--target/linux/atheros/patches-3.10/105-ar2315_pci.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/atheros/patches-3.10/105-ar2315_pci.patch b/target/linux/atheros/patches-3.10/105-ar2315_pci.patch
index 7c72a8e417..3e5184803e 100644
--- a/target/linux/atheros/patches-3.10/105-ar2315_pci.patch
+++ b/target/linux/atheros/patches-3.10/105-ar2315_pci.patch
@@ -95,7 +95,7 @@
+ ar231x_mask_reg(AR2315_PCI_MISC_CONFIG, AR2315_PCIMISC_CFG_SEL, 0);
+ local_irq_restore(flags);
+
-+ return (err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL);
++ return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
+}
+
+static int ar231x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 * value)