projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ar71xx: return statements does not need parenthesis
[openwrt.git]
/
target
/
linux
/
ar71xx
/
files
/
arch
/
mips
/
pci
/
pci-ar71xx.c
diff --git
a/target/linux/ar71xx/files/arch/mips/pci/pci-ar71xx.c
b/target/linux/ar71xx/files/arch/mips/pci/pci-ar71xx.c
index
7d0eee9
..
c6c6e55
100644
(file)
--- a/
target/linux/ar71xx/files/arch/mips/pci/pci-ar71xx.c
+++ b/
target/linux/ar71xx/files/arch/mips/pci/pci-ar71xx.c
@@
-107,7
+107,7
@@
int ar71xx_pci_be_handler(int is_fixup)
__raw_writel(ahb_err, base + PCI_REG_AHB_ERR);
}
__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,
}
static inline int ar71xx_pci_set_cfgaddr(struct pci_bus *bus,
This page took
0.020988 seconds
and
4
git commands to generate.