diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-09-25 10:56:56 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-26 04:37:19 (GMT) |
commit | 59f069789c98678710ed30a4be0daa3546ec82c7 (patch) | |
tree | 54cd734e3a3cb9cafdb5a53249081cdbd298c8b8 /drivers | |
parent | 58a89ecaca53736aa465170530acea4f8be34ab4 (diff) | |
download | linux-59f069789c98678710ed30a4be0daa3546ec82c7.tar.xz |
net: update docbook comment for __mdiobus_register()
Update the docbook comment for __mdiobus_register() to include the new
module owner argument. This resolves a warning found by the 0-day
builder.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/mdio_bus.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c index c340e41..12f44c5 100644 --- a/drivers/net/phy/mdio_bus.c +++ b/drivers/net/phy/mdio_bus.c @@ -236,11 +236,14 @@ static inline void of_mdiobus_link_phydev(struct mii_bus *mdio, #endif /** - * mdiobus_register - bring up all the PHYs on a given bus and attach them to bus + * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus * @bus: target mii_bus + * @owner: module containing bus accessor functions * * Description: Called by a bus driver to bring up all the PHYs - * on a given bus, and attach them to the bus. + * on a given bus, and attach them to the bus. Drivers should use + * mdiobus_register() rather than __mdiobus_register() unless they + * need to pass a specific owner module. * * Returns 0 on success or < 0 on error. */ |