mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 08:21:14 +00:00
ar71xx: return statements does not need parenthesis
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> SVN-Revision: 23979
This commit is contained in:
parent
e244e1c7cd
commit
f4d5c885e4
@ -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,
|
||||||
|
@ -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 */
|
||||||
|
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user