From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] hwmon/pkgtemp: fix build error Date: Tue, 28 Sep 2010 09:48:21 -0700 Message-ID: <20100928094821.2ff11701.randy.dunlap@oracle.com> References: <20100928141823.8c61000e.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from rcsinet10.oracle.com ([148.87.113.121]:36547 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755672Ab0I1Qsx (ORCPT ); Tue, 28 Sep 2010 12:48:53 -0400 In-Reply-To: <20100928141823.8c61000e.sfr@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell , Fenghua Yu Cc: linux-next@vger.kernel.org, LKML From: Randy Dunlap 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 --- 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