[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20100928094821.2ff11701.randy.dunlap@oracle.com>
Date: Tue, 28 Sep 2010 09:48:21 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Stephen Rothwell <sfr@...b.auug.org.au>,
Fenghua Yu <fenghua.yu@...el.com>
Cc: linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH -next] hwmon/pkgtemp: fix build error
From: Randy Dunlap <randy.dunlap@...cle.com>
Fix build error and config symbol comment:
drivers/hwmon/pkgtemp.c:413: error:'pkgtemp_cpu_notifier' undeclared (first use in this function)
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
---
drivers/hwmon/pkgtemp.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- linux-next-20100928.orig/drivers/hwmon/pkgtemp.c
+++ linux-next-20100928/drivers/hwmon/pkgtemp.c
@@ -386,7 +386,7 @@ static int __cpuinit pkgtemp_cpu_callbac
static struct notifier_block pkgtemp_cpu_notifier __refdata = {
.notifier_call = pkgtemp_cpu_callback,
};
-#endif /* !CONFIG_HOTPLUG_CPU */
+#endif /* CONFIG_HOTPLUG_CPU */
static int __init pkgtemp_init(void)
{
@@ -408,9 +408,9 @@ static int __init pkgtemp_init(void)
err = -ENODEV;
goto exit_driver_unreg;
}
-#endif
-
+#else
register_hotcpu_notifier(&pkgtemp_cpu_notifier);
+#endif
return 0;
#ifndef CONFIG_HOTPLUG_CPU
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists