]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[velocity] Fix usage of mii_read() and mii_write()
authorMichael Brown <mcb30@ipxe.org>
Thu, 19 Apr 2018 11:36:16 +0000 (12:36 +0100)
committerMichael Brown <mcb30@ipxe.org>
Thu, 19 Apr 2018 11:36:16 +0000 (12:36 +0100)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/drivers/net/velocity.c

index 6d5185209fa8462b53774d753802839c31af7abf..129fc136adeebcde16101e182215c492e5576e91 100644 (file)
@@ -194,14 +194,14 @@ static void velocity_set_link ( struct velocity_nic *vlc ) {
        int tmp;
 
        /* Advertise 1000MBit */
-       tmp = velocity_mii_read ( &vlc->mii, MII_CTRL1000 );
+       tmp = mii_read ( &vlc->mii, MII_CTRL1000 );
        tmp |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
-       velocity_mii_write ( &vlc->mii, MII_CTRL1000, tmp );
+       mii_write ( &vlc->mii, MII_CTRL1000, tmp );
 
        /* Enable GBit operation in MII Control Register */
-       tmp = velocity_mii_read ( &vlc->mii, MII_BMCR );
+       tmp = mii_read ( &vlc->mii, MII_BMCR );
        tmp |= BMCR_SPEED1000;
-       velocity_mii_write ( &vlc->mii, MII_BMCR, tmp );
+       mii_write ( &vlc->mii, MII_BMCR, tmp );
 }
 
 /******************************************************************************