All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 1/1] network: add the missing phy_device speed information to phy_mii_ioctl
@ 2007-03-02 17:42 Shan Lu
  2007-03-03  1:23 ` Jeff Garzik
  2007-03-06 17:33 ` Andy Fleming
  0 siblings, 2 replies; 4+ messages in thread
From: Shan Lu @ 2007-03-02 17:42 UTC (permalink / raw)
  To: jeff, akpm, linux-kernel, netdev; +Cc: shanlu

Changelog:
Function `phy_mii_ioctl' returns physical device's information based on
user requests. When requested to return the basic mode control register
information (BMCR), the original implementation only returns the
physical device's duplex information and forgets to return speed
information, which should not be because BMCR register is used to hold
both duplex and speed information.

The patch checks the BMCR value against speed-related flags and fills
the return structure's speed field accordingly. 

Signed-off-by: Shan<shanlu@cs.uiuc.edu>

---
--- drivers/net/phy/phy.c   2007-03-02 10:40:26.000000000 -0600  2.6.20
+++ drivers/net/phy/phy.c   2007-03-02 10:41:39.000000000 -0600
@@ -337,6 +337,10 @@ int phy_mii_ioctl(struct phy_device *phy
                                        phydev->duplex = DUPLEX_FULL;
                                else
                                        phydev->duplex = DUPLEX_HALF;
+                               if ((!phydev->autoneg) && (val
&BMCR_SPEED1000))
+                                       phydev->speed = SPEED_1000;
+                               else if ((!phydev->autoneg) && (val &
BMCR_SPEED100))
+                                       phydev->speed = SPEED_100;
                                break;
                        case MII_ADVERTISE:
                                phydev->advertising = val;

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-03-06 17:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-02 17:42 [patch 1/1] network: add the missing phy_device speed information to phy_mii_ioctl Shan Lu
2007-03-03  1:23 ` Jeff Garzik
2007-03-06 17:33 ` Andy Fleming
2007-03-06 17:45   ` Shan Lu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.