diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-03 05:43:40 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2013-06-21 13:05:24 -0400 |
commit | cd275a5635511922f8b11f8a2a42b6d8b1e88237 (patch) | |
tree | abe3a6e0dd56b23dd259af5424a7bec6bf20271e /drivers/hwmon/w83627ehf.c | |
parent | 3a2af25d8477ea2ec1ffc046403b4b0ac8514348 (diff) |
hwmon: (w83627ehf) Remove redundant platform_set_drvdata()
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>
Diffstat (limited to 'drivers/hwmon/w83627ehf.c')
-rw-r--r-- | drivers/hwmon/w83627ehf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index 016027229e81..004801e6fbb9 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c | |||
@@ -2598,7 +2598,6 @@ static int w83627ehf_probe(struct platform_device *pdev) | |||
2598 | exit_remove: | 2598 | exit_remove: |
2599 | w83627ehf_device_remove_files(dev); | 2599 | w83627ehf_device_remove_files(dev); |
2600 | exit_release: | 2600 | exit_release: |
2601 | platform_set_drvdata(pdev, NULL); | ||
2602 | release_region(res->start, IOREGION_LENGTH); | 2601 | release_region(res->start, IOREGION_LENGTH); |
2603 | exit: | 2602 | exit: |
2604 | return err; | 2603 | return err; |
@@ -2611,7 +2610,6 @@ static int w83627ehf_remove(struct platform_device *pdev) | |||
2611 | hwmon_device_unregister(data->hwmon_dev); | 2610 | hwmon_device_unregister(data->hwmon_dev); |
2612 | w83627ehf_device_remove_files(&pdev->dev); | 2611 | w83627ehf_device_remove_files(&pdev->dev); |
2613 | release_region(data->addr, IOREGION_LENGTH); | 2612 | release_region(data->addr, IOREGION_LENGTH); |
2614 | platform_set_drvdata(pdev, NULL); | ||
2615 | 2613 | ||
2616 | return 0; | 2614 | return 0; |
2617 | } | 2615 | } |