]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
w1: mxc_w1: Adapt the clock name to the new clock framework
authorFabio Estevam <fabio.estevam@freescale.com>
Mon, 19 Nov 2012 12:19:46 +0000 (10:19 -0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 20:40:14 +0000 (12:40 -0800)
With the new i.mx clock framework the mxc_w1 clock is registered as:

clk_register_clkdev(clk[owire_gate], NULL, "mxc_w1.0");

So we do not need to pass "owire" string and can use NULL instead.

While at it, also fix the clock error handling code.

Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-----
Changes since v2:
- Add Ack's
Changes since v1:
- Fix clock error handling
 drivers/w1/masters/mxc_w1.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/w1/masters/mxc_w1.c

index 1cc61a700fa84bd7830bd37f4b3d069438f4ba87..12c1ab844d800e310b3121d49ddb50363dd76c02 100644 (file)
@@ -117,9 +117,9 @@ static int __devinit mxc_w1_probe(struct platform_device *pdev)
        if (!mdev)
                return -ENOMEM;
 
-       mdev->clk = clk_get(&pdev->dev, "owire");
-       if (!mdev->clk) {
-               err = -ENODEV;
+       mdev->clk = clk_get(&pdev->dev, NULL);
+       if (IS_ERR(mdev->clk)) {
+               err = PTR_ERR(mdev->clk);
                goto failed_clk;
        }