mirror of https://github.com/hak5/openwrt.git
parent
d1f7783612
commit
204fc6bed5
|
@ -219,11 +219,6 @@ struct ar7240sw_hw_stat {
|
||||||
|
|
||||||
static DEFINE_MUTEX(reg_mutex);
|
static DEFINE_MUTEX(reg_mutex);
|
||||||
|
|
||||||
static inline void ar7240sw_init(struct ar7240sw *as, struct mii_bus *mii)
|
|
||||||
{
|
|
||||||
as->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);
|
||||||
|
@ -849,7 +844,7 @@ static struct ar7240sw *ar7240_probe(struct ag71xx *ag)
|
||||||
if (!as)
|
if (!as)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
ar7240sw_init(as, mii);
|
as->mii_bus = mii;
|
||||||
|
|
||||||
ctrl = ar7240sw_reg_read(mii, AR7240_REG_MASK_CTRL);
|
ctrl = ar7240sw_reg_read(mii, AR7240_REG_MASK_CTRL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue