Re: [PATCH] hwmon: ntc_thermistor: correct the information printed during probe

2014-06-26 Thread Guenter Roeck
On 06/26/2014 05:50 AM, Naveen Krishna Chatradhi wrote: Currently, dev_info() at the end of the probe says "type:%s ". But, prints the pdev->name. This patch uses "pdev_id->name" which prints the thermistor type. Signed-off-by: Naveen Krishna Chatradhi Another good catch. Applied, thanks.

[PATCH] hwmon: ntc_thermistor: correct the information printed during probe

2014-06-26 Thread Naveen Krishna Chatradhi
Currently, dev_info() at the end of the probe says "type:%s ". But, prints the pdev->name. This patch uses "pdev_id->name" which prints the thermistor type. Signed-off-by: Naveen Krishna Chatradhi --- drivers/hwmon/ntc_thermistor.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH] hwmon: ntc_thermistor: correct the information printed during probe

2014-06-26 Thread Naveen Krishna Chatradhi
Currently, dev_info() at the end of the probe says type:%s . But, prints the pdev-name. This patch uses pdev_id-name which prints the thermistor type. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com --- drivers/hwmon/ntc_thermistor.c |2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH] hwmon: ntc_thermistor: correct the information printed during probe

2014-06-26 Thread Guenter Roeck
On 06/26/2014 05:50 AM, Naveen Krishna Chatradhi wrote: Currently, dev_info() at the end of the probe says type:%s . But, prints the pdev-name. This patch uses pdev_id-name which prints the thermistor type. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com Another good catch.