Files
kernel-tenderloin-3.0/drivers
Arnaldo Carvalho de Melo 0d615ec2bb sundance: Really read addr 0
Make phy 0 actually be read, as it is not being right now as we have:

              int mii_status = mdio_read(dev, phy, MII_BMSR);
              int phyx = phy & 0x1f;

When we should have instead:

              int phyx = phy & 0x1f;
              int mii_status = mdio_read(dev, phyx, MII_BMSR);

so that when phy, in the end of the (phy = 1; phy <= 32...) loop gets
to 32 phyx gets to 0, i.e. we were reading at 32, when the intended
read was for 0.

Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
2006-01-26 22:01:38 -05:00
..
2006-01-18 19:25:49 -08:00
2006-01-18 19:20:31 -08:00
2006-01-14 18:27:13 -08:00
2006-01-18 19:20:30 -08:00
2006-01-26 22:01:38 -05:00
2006-01-14 10:41:42 -08:00
2006-01-14 18:25:20 -08:00
2006-01-13 16:29:56 -08:00
2006-01-17 15:53:11 -08:00
2006-01-18 19:20:31 -08:00
2006-01-18 19:20:31 -08:00