mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ar71xx: return statements does not need parenthesis
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23979 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user