summaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/phy_device.c
diff options
context:
space:
mode:
authorFlorian Fainelli2013-05-23 03:11:12 +0200
committerDavid S. Miller2013-05-28 07:42:50 +0200
commit4284b6a535a9aab33e5f3c37929143508dd2ee60 (patch)
tree8535656632c49ece1d66d97c9e591d07f3eaff13 /drivers/net/phy/phy_device.c
parentnet: ethtool: disambiguate XCVR_* meaning (diff)
downloadkernel-qcow2-linux-4284b6a535a9aab33e5f3c37929143508dd2ee60.tar.gz
kernel-qcow2-linux-4284b6a535a9aab33e5f3c37929143508dd2ee60.tar.xz
kernel-qcow2-linux-4284b6a535a9aab33e5f3c37929143508dd2ee60.zip
phy: allow drivers to flag a PHY device as internal
libphy currently always reports a PHY as an external transceiver from the ethtool output. This is inaccurate, because some drivers should be able to tell that a PHY device is an internal transceiver of an Ethernet MAC. Add a new flag (PHY_IS_INTERNAL) which can be set by PHY drivers just like other flags, and a corresponding helper: phy_is_internal() which can be used by networking drivers to query if a given PHY device is internal. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phy_device.c')
-rw-r--r--drivers/net/phy/phy_device.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index b55aa33a5b8b..74630e94fa3b 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -1017,6 +1017,9 @@ static int phy_probe(struct device *dev)
phy_interrupt_is_valid(phydev))
phydev->irq = PHY_POLL;
+ if (phydrv->flags & PHY_IS_INTERNAL)
+ phydev->is_internal = true;
+
mutex_lock(&phydev->lock);
/* Start out supporting everything. Eventually,