From: Gabor Juhos Date: Tue, 13 Mar 2012 17:29:36 +0000 (+0000) Subject: ar71xx: ag71xx: poll PHY status of all available switch ports X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=e9b91bcb82fcb40009396d2fc7d1944f54de5986;p=openwrt%2Fsvn-archive%2Farchive.git ar71xx: ag71xx: poll PHY status of all available switch ports SVN-Revision: 30924 --- diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c index 25ee7d4f14..f14b23121a 100644 --- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c +++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_ar7240.c @@ -1070,11 +1070,12 @@ err_free: static void link_function(struct work_struct *work) { struct ag71xx *ag = container_of(work, struct ag71xx, link_work.work); + struct ar7240sw *as = ag->phy_priv; unsigned long flags; int i; int status = 0; - for (i = 0; i < 4; i++) { + for (i = 0; i < as->swdev.ports; i++) { int link = ar7240sw_phy_read(ag->mii_bus, i, MII_BMSR); if(link & BMSR_LSTATUS) { status = 1;