Commit 93a88ef3 authored by Naveen Krishna Chatradhi's avatar Naveen Krishna Chatradhi Committed by Guenter Roeck

hwmon: (ntc_thermistor) Correct information printed during probe

Currently, dev_info() at the end of the probe says
"type:%s ". But, prints pdev->name.

This patch uses "pdev_id->name" which prints the thermistor type.
Signed-off-by: default avatarNaveen Krishna Chatradhi <ch.naveen@samsung.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 4c834452
...@@ -512,7 +512,7 @@ static int ntc_thermistor_probe(struct platform_device *pdev) ...@@ -512,7 +512,7 @@ static int ntc_thermistor_probe(struct platform_device *pdev)
} }
dev_info(&pdev->dev, "Thermistor type: %s successfully probed.\n", dev_info(&pdev->dev, "Thermistor type: %s successfully probed.\n",
pdev->name); pdev_id->name);
return 0; return 0;
err_after_sysfs: err_after_sysfs:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment