2013-08-21 10:16:02

by Libo Chen

[permalink] [raw]
Subject: [PATCH] net: phy: mdio-octeon: use platform_set_drvdata()

Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_set_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.

Signed-off-by: Libo Chen <[email protected]>
---
drivers/net/phy/mdio-octeon.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/phy/mdio-octeon.c b/drivers/net/phy/mdio-octeon.c
index b51fa1f..7f18f80 100644
--- a/drivers/net/phy/mdio-octeon.c
+++ b/drivers/net/phy/mdio-octeon.c
@@ -222,7 +222,7 @@ static int octeon_mdiobus_probe(struct platform_device *pdev)
bus->mii_bus->read = octeon_mdiobus_read;
bus->mii_bus->write = octeon_mdiobus_write;

- dev_set_drvdata(&pdev->dev, bus);
+ platform_set_drvdata(pdev, bus);

err = of_mdiobus_register(bus->mii_bus, pdev->dev.of_node);
if (err)
--
1.7.1


2013-08-22 03:51:51

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] net: phy: mdio-octeon: use platform_set_drvdata()

From: Libo Chen <[email protected]>
Date: Wed, 21 Aug 2013 18:15:15 +0800

> Use the wrapper functions for getting and setting the driver data using
> platform_device instead of using dev_set_drvdata() with &pdev->dev,
> so we can directly pass a struct platform_device.
>
> Signed-off-by: Libo Chen <[email protected]>

Applied.