From 77cff176bf07b092893a87235bfbae638a11eb8c Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Mon, 24 Nov 2008 16:56:36 +0000 Subject: ethernet driver preparation for gigabit support SVN-Revision: 13340 --- target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c') diff --git a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c index 7242868462..8728c7c7b9 100644 --- a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c +++ b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c @@ -255,13 +255,10 @@ int ag71xx_phy_connect(struct ag71xx *ag) } /* mask with MAC supported features */ - phydev->supported &= (SUPPORTED_10baseT_Half - | SUPPORTED_10baseT_Full - | SUPPORTED_100baseT_Half - | SUPPORTED_100baseT_Full - | SUPPORTED_Autoneg - | SUPPORTED_MII - | SUPPORTED_TP); + if (pdata->has_gbit) + phydev->supported &= PHY_GBIT_FEATURES; + else + phydev->supported &= PHY_BASIC_FEATURES; phydev->advertising = phydev->supported; -- cgit v1.2.3