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-11 18:42:13 -08:00
2006-01-14 18:27:06 -08:00
2006-01-09 13:56:42 +00:00
2006-01-10 13:09:01 -08:00
2006-01-14 18:27:06 -08:00
2006-01-16 20:24:45 -08:00
2006-01-14 18:27:06 -08:00
2006-01-12 20:09:29 +11:00
2006-01-18 19:25:49 -08:00
2006-01-10 08:01:39 -08:00
2006-01-14 18:27:06 -08:00
2006-01-09 14:15:39 -08:00
2006-01-13 11:26:07 -08:00
2006-01-18 19:20:31 -08:00
2005-12-22 23:09:54 -08:00
2006-01-14 18:27:13 -08:00
2006-01-09 12:13:23 -08:00
2006-01-13 11:26:07 -08:00
2006-01-14 18:27:06 -08:00
2006-01-16 19:21:57 -05:00
2006-01-14 18:27:06 -08:00
2006-01-16 23:15:27 -08:00
2006-01-14 18:27:06 -08:00
2006-01-14 10:42:40 -08:00
2006-01-18 19:20:30 -08:00
2006-01-16 23:24:10 -08:00
2006-01-14 18:27:06 -08:00
2006-01-13 11:26:08 -08:00
2006-01-10 02:00:39 -05:00
2006-01-14 19:44:01 -08:00
2006-01-16 23:15:26 -08:00
2006-01-26 22:01:38 -05:00
2006-01-11 18:42:13 -08:00
2006-01-11 18:42:13 -08:00
2006-01-10 21:52:25 -05:00
2006-01-17 19:31:54 -05:00
2006-01-13 11:26:08 -08:00
2006-01-13 11:26:09 -08:00
2006-01-13 11:26:10 -08:00
2006-01-15 16:43:29 -08:00
2006-01-14 10:41:42 -08:00
2006-01-17 19:37:45 -05:00
2006-01-19 22:16:58 -08:00
2006-01-13 11:26:09 -08:00
2006-01-14 18:25:20 -08:00
2006-01-13 16:29:56 -08:00
2006-01-06 00:03:24 +01:00
2006-01-14 18:27:06 -08:00
2006-01-17 15:53:11 -08:00
2006-01-10 00:08:17 +01:00
2006-01-13 11:26:10 -08:00
2006-01-18 19:20:31 -08:00
2006-01-18 19:20:31 -08:00