ar71xx: return statements does not need parenthesis
[openwrt.git] / target / linux / ar71xx / files / arch / mips / pci / pci-ar71xx.c
index 7d0eee9..c6c6e55 100644 (file)
@@ -107,7 +107,7 @@ int ar71xx_pci_be_handler(int is_fixup)
                __raw_writel(ahb_err, base + PCI_REG_AHB_ERR);
        }
 
-       return ((ahb_err | pci_err) ? 1 : 0);
+       return (ahb_err | pci_err) ? 1 : 0;
 }
 
 static inline int ar71xx_pci_set_cfgaddr(struct pci_bus *bus,
This page took 0.02601 seconds and 4 git commands to generate.