[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1285637552-1058-1-git-send-email-guenter.roeck@ericsson.com>
Date: Mon, 27 Sep 2010 18:32:32 -0700
From: Guenter Roeck <guenter.roeck@...csson.com>
To: torvalds@...ux-foundation.org
CC: linux-kernel@...r.kernel.org, lm-sensors@...sensors.org,
Pekka Enberg <penberg@...nel.org>, Ingo Molnar <mingo@...e.hu>,
Fenghua Yu <fenghua.yu@...el.com>,
Jean Delvare <khali@...ux-fr.org>,
Guenter Roeck <guenter.roeck@...csson.com>
Subject: [PATCH v3] hwmon (coretemp): Fix build breakage if SMP is undefined
Commit e40cc4bdfd4b89813f072f72bd9c7055814d3f0f introduced
a build breakage if CONFIG_SMP is undefined. This commit
fixes the problem.
Signed-off-by: Guenter Roeck <guenter.roeck@...csson.com>
Cc: Fenghua Yu <fenghua.yu@...el.com>
---
v2: Fix compile warning due to unused variable i if SMP is undefined
v3: include asm/smp.h instead of using ifdef CONFIG_SMP
drivers/hwmon/coretemp.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c
index baa842a..a23b17a 100644
--- a/drivers/hwmon/coretemp.c
+++ b/drivers/hwmon/coretemp.c
@@ -36,6 +36,7 @@
#include <linux/pci.h>
#include <asm/msr.h>
#include <asm/processor.h>
+#include <asm/smp.h>
#define DRVNAME "coretemp"
--
1.7.0.87.g0901d
--
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