diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-03 15:13:39 +0530 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2013-06-21 10:05:19 -0700 |
commit | 3a2af25d8477ea2ec1ffc046403b4b0ac8514348 (patch) | |
tree | 3e3864d1da7b79d477c8437b6a01c5ccde225deb /drivers/hwmon | |
parent | 15d2f565f2a935d828100fbaa1a6aecb800a2966 (diff) | |
download | blackbird-obmc-linux-3a2af25d8477ea2ec1ffc046403b4b0ac8514348.tar.gz blackbird-obmc-linux-3a2af25d8477ea2ec1ffc046403b4b0ac8514348.zip |
hwmon: (ntc_thermistor) 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: MyungJoo Ham <myungjoo.ham@samsung.com>
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/ntc_thermistor.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hwmon/ntc_thermistor.c b/drivers/hwmon/ntc_thermistor.c index d6d640a733d5..830a842d796a 100644 --- a/drivers/hwmon/ntc_thermistor.c +++ b/drivers/hwmon/ntc_thermistor.c @@ -514,7 +514,6 @@ static int ntc_thermistor_remove(struct platform_device *pdev) hwmon_device_unregister(data->hwmon_dev); sysfs_remove_group(&data->dev->kobj, &ntc_attr_group); ntc_iio_channel_release(pdata); - platform_set_drvdata(pdev, NULL); return 0; } |