From: Sachin Kamat Date: Fri, 3 May 2013 09:43:39 +0000 (+0530) Subject: hwmon: ntc_thermistor: Remove redundant platform_set_drvdata() X-Git-Tag: next-20130619~83^2~9 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0c70ed736ee477245dc6969b9eabfaad659816e;p=karo-tx-linux.git 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 Cc: MyungJoo Ham Acked-by: MyungJoo Ham Signed-off-by: Guenter Roeck --- 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; }