mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH][TRIVIAL] [thermal] fix unused variable warning
@ 2011-10-10 10:05 Daniel Walter
  2011-10-17 11:23 ` Rakib Mullick
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Walter @ 2011-10-10 10:05 UTC (permalink / raw)
  To: rui.zhang; +Cc: linux-kernel

[thermal] fix unused variable warning 

thermal_event_seqnum is only used if CONFIG_NET is defined.

Signed-off-by: Daniel Walter <d.walter@0x90.at>
---
 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)
 {

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-10-17 11:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-10 10:05 [PATCH][TRIVIAL] [thermal] fix unused variable warning Daniel Walter
2011-10-17 11:23 ` Rakib Mullick

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome