diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-11-13 11:27:00 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-11-13 11:27:00 +0000 |
commit | 2d882cff23e00ef526a93af4a7d49f2f12f341a4 (patch) | |
tree | f3c3f77add65b46278fc80acc105096b04fdbbbd /target/linux/ar71xx/files | |
parent | 538a9493b96682d55cb024eeec237b6cd25be3af (diff) | |
download | upstream-2d882cff23e00ef526a93af4a7d49f2f12f341a4.tar.gz upstream-2d882cff23e00ef526a93af4a7d49f2f12f341a4.tar.bz2 upstream-2d882cff23e00ef526a93af4a7d49f2f12f341a4.zip |
ar71xx: ag71xx: remove unused mii_cfg related functions and defines
SVN-Revision: 29014
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r-- | target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h index 5757e60ac1..067307026b 100644 --- a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h +++ b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h @@ -343,12 +343,6 @@ static inline int ag71xx_desc_pktlen(struct ag71xx_desc *desc) #define RX_STATUS_OF BIT(2) /* Rx Overflow */ #define RX_STATUS_BE BIT(3) /* Bus Error */ -#define MII_CTRL_SPEED_SHIFT 4 -#define MII_CTRL_SPEED_MASK 3 -#define MII_CTRL_SPEED_10 0 -#define MII_CTRL_SPEED_100 1 -#define MII_CTRL_SPEED_1000 2 - static inline void ag71xx_check_reg_offset(struct ag71xx *ag, unsigned reg) { switch (reg) { @@ -412,40 +406,6 @@ static inline void ag71xx_int_disable(struct ag71xx *ag, u32 ints) ag71xx_cb(ag, AG71XX_REG_INT_ENABLE, ints); } -static inline void ag71xx_mii_ctrl_wr(struct ag71xx *ag, u32 value) -{ - struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag); - - if (pdata->is_ar724x) - return; - - __raw_writel(value, ag->mii_ctrl); - - /* flush write */ - __raw_readl(ag->mii_ctrl); -} - -static inline u32 ag71xx_mii_ctrl_rr(struct ag71xx *ag) -{ - struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag); - - if (pdata->is_ar724x) - return 0xffffffff; - - return __raw_readl(ag->mii_ctrl); -} - -static inline void ag71xx_mii_ctrl_set_speed(struct ag71xx *ag, - unsigned int speed) -{ - u32 t; - - t = ag71xx_mii_ctrl_rr(ag); - t &= ~(MII_CTRL_SPEED_MASK << MII_CTRL_SPEED_SHIFT); - t |= (speed & MII_CTRL_SPEED_MASK) << MII_CTRL_SPEED_SHIFT; - ag71xx_mii_ctrl_wr(ag, t); -} - #ifdef CONFIG_AG71XX_AR8216_SUPPORT void ag71xx_add_ar8216_header(struct ag71xx *ag, struct sk_buff *skb); int ag71xx_remove_ar8216_header(struct ag71xx *ag, struct sk_buff *skb, |