]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
hwmon: w83627ehf: Remove redundant platform_set_drvdata()
authorSachin Kamat <sachin.kamat@linaro.org>
Fri, 3 May 2013 09:43:40 +0000 (15:13 +0530)
committerGuenter Roeck <linux@roeck-us.net>
Tue, 21 May 2013 01:23:57 +0000 (18:23 -0700)
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/w83627ehf.c

index 016027229e81835f205f0cf90afb6a4575043d63..004801e6fbb9756d8bdeed3aac25899a7f00edaa 100644 (file)
@@ -2598,7 +2598,6 @@ static int w83627ehf_probe(struct platform_device *pdev)
 exit_remove:
        w83627ehf_device_remove_files(dev);
 exit_release:
-       platform_set_drvdata(pdev, NULL);
        release_region(res->start, IOREGION_LENGTH);
 exit:
        return err;
@@ -2611,7 +2610,6 @@ static int w83627ehf_remove(struct platform_device *pdev)
        hwmon_device_unregister(data->hwmon_dev);
        w83627ehf_device_remove_files(&pdev->dev);
        release_region(data->addr, IOREGION_LENGTH);
-       platform_set_drvdata(pdev, NULL);
 
        return 0;
 }