[PATCH][TRIVIAL] [thermal] fix unused variable warning

From: Daniel Walter
Date: Mon Oct 10 2011 - 06:13:14 EST


[thermal] fix unused variable warning

thermal_event_seqnum is only used if CONFIG_NET is defined.

Signed-off-by: Daniel Walter <d.walter@xxxxxxx>
---
drivers/thermal/thermal_sys.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
index 708f8e9..def02da 100644
--- a/drivers/thermal/thermal_sys.c
+++ b/drivers/thermal/thermal_sys.c
@@ -60,7 +60,9 @@ static LIST_HEAD(thermal_tz_list);
static LIST_HEAD(thermal_cdev_list);
static DEFINE_MUTEX(thermal_list_lock);

+#ifdef CONFIG_NET
static unsigned int thermal_event_seqnum;
+#endif /* CONFIG_NET */

static int get_idr(struct idr *idr, struct mutex *lock, int *id)
{
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/