david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Inhibit a spurious warning on GCC 4.0.1

This commit is contained in:
Michael Brown 2007-07-26 00:46:27 +01:00
parent 2c7ffa8c27
commit 84c347c7de
1 changed files with 2 additions and 1 deletions

View File

@ -872,8 +872,9 @@ sis900_read_mode(struct nic *nic __unused, int phy_addr, int *speed, int *duplex
u16 phy_id0, phy_id1;
/* STSOUT register is Latched on Transition, read operation updates it */
while (i++ < 2)
do {
status = sis900_mdio_read(phy_addr, MII_STSOUT);
} while (i++ < 2);
*speed = HW_SPEED_10_MBPS;
*duplex = FDX_CAPABLE_HALF_SELECTED;