diff options
author | Jan Beulich <jbeulich@novell.com> | 2010-09-13 06:05:51 -0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2010-09-24 14:44:18 -0400 |
commit | 89a3fd35ba0318a7208e2c8d8ca6189f567d4a93 (patch) | |
tree | c558ed6e5b37bff0ed2d8d6e7b0ca3832547a21f | |
parent | f7c77a3dc4683659b6f0d1b6cbc82b6253d095e0 (diff) |
x86/hwmon: fix module init for hotplug-but-no-device-found case
In commit 0dca94baeab4a1a514841b0a4c8e3a51dfb4d5ae the call to
platform_driver_unregister() was made conditional upon !HOTPLUG_CPU,
but the return value from coretemp_init() was left to indicate an
error. This isn't correct, as the negative return value indicates to
the module loader that initialization failed, which isn't intended
here and results in dangling pointers.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Chen Gong <gong.chen@linux.intel.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
-rw-r--r-- | drivers/hwmon/coretemp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index de8111114f46..6b3ef553bd13 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c | |||
@@ -541,16 +541,19 @@ static int __init coretemp_init(void) | |||
541 | " has no thermal sensor.\n", c->x86_model); | 541 | " has no thermal sensor.\n", c->x86_model); |
542 | } | 542 | } |
543 | } | 543 | } |
544 | |||
545 | #ifndef CONFIG_HOTPLUG_CPU | ||
544 | if (list_empty(&pdev_list)) { | 546 | if (list_empty(&pdev_list)) { |
545 | err = -ENODEV; | 547 | err = -ENODEV; |
546 | goto exit_driver_unreg; | 548 | goto exit_driver_unreg; |
547 | } | 549 | } |
550 | #endif | ||
548 | 551 | ||
549 | register_hotcpu_notifier(&coretemp_cpu_notifier); | 552 | register_hotcpu_notifier(&coretemp_cpu_notifier); |
550 | return 0; | 553 | return 0; |
551 | 554 | ||
552 | exit_driver_unreg: | ||
553 | #ifndef CONFIG_HOTPLUG_CPU | 555 | #ifndef CONFIG_HOTPLUG_CPU |
556 | exit_driver_unreg: | ||
554 | platform_driver_unregister(&coretemp_driver); | 557 | platform_driver_unregister(&coretemp_driver); |
555 | #endif | 558 | #endif |
556 | exit: | 559 | exit: |