1
0
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:
juhosg
2010-11-12 18:51:38 +00:00
parent 74ed307c1e
commit c0734b8ffe
3 changed files with 8 additions and 8 deletions

View 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,