1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 06:36:21 +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); __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,

View File

@ -190,12 +190,12 @@ static inline struct ag71xx_platform_data *ag71xx_get_pdata(struct ag71xx *ag)
static inline int ag71xx_desc_empty(struct ag71xx_desc *desc) static inline int ag71xx_desc_empty(struct ag71xx_desc *desc)
{ {
return ((desc->ctrl & DESC_EMPTY) != 0); return (desc->ctrl & DESC_EMPTY) != 0;
} }
static inline int ag71xx_desc_pktlen(struct ag71xx_desc *desc) static inline int ag71xx_desc_pktlen(struct ag71xx_desc *desc)
{ {
return (desc->ctrl & DESC_PKTLEN_M); return desc->ctrl & DESC_PKTLEN_M;
} }
/* Register offsets */ /* Register offsets */

View File

@ -219,17 +219,17 @@ static inline void ar7240sw_init(struct ar7240sw *as, struct mii_bus *mii)
static inline u16 mk_phy_addr(u32 reg) static inline u16 mk_phy_addr(u32 reg)
{ {
return (0x17 & ((reg >> 4) | 0x10)); return 0x17 & ((reg >> 4) | 0x10);
} }
static inline u16 mk_phy_reg(u32 reg) static inline u16 mk_phy_reg(u32 reg)
{ {
return ((reg << 1) & 0x1e); return (reg << 1) & 0x1e;
} }
static inline u16 mk_high_addr(u32 reg) static inline u16 mk_high_addr(u32 reg)
{ {
return ((reg >> 7) & 0x1ff); return (reg >> 7) & 0x1ff;
} }
static u32 __ar7240sw_reg_read(struct ar7240sw *as, u32 reg) static u32 __ar7240sw_reg_read(struct ar7240sw *as, u32 reg)
@ -249,7 +249,7 @@ static u32 __ar7240sw_reg_read(struct ar7240sw *as, u32 reg)
lo = (u32) mdiobus_read(mii, phy_addr, phy_reg); lo = (u32) mdiobus_read(mii, phy_addr, phy_reg);
hi = (u32) mdiobus_read(mii, phy_addr, phy_reg + 1); hi = (u32) mdiobus_read(mii, phy_addr, phy_reg + 1);
return ((hi << 16) | lo); return (hi << 16) | lo;
} }
static void __ar7240sw_reg_write(struct ar7240sw *as, u32 reg, u32 val) static void __ar7240sw_reg_write(struct ar7240sw *as, u32 reg, u32 val)
@ -352,7 +352,7 @@ static u16 ar7240sw_phy_read(struct ar7240sw *as, unsigned phy_addr,
return 0xffff; return 0xffff;
t = ar7240sw_reg_read(as, AR7240_REG_MDIO_CTRL); t = ar7240sw_reg_read(as, AR7240_REG_MDIO_CTRL);
return (t & AR7240_MDIO_CTRL_DATA_M); return t & AR7240_MDIO_CTRL_DATA_M;
} }
static int ar7240sw_phy_write(struct ar7240sw *as, unsigned phy_addr, static int ar7240sw_phy_write(struct ar7240sw *as, unsigned phy_addr,