diff mbox

platform:x86: Fix warnings in telemetry debugfs

Message ID 1453272646-15183-1-git-send-email-souvik.k.chakravarty@intel.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Chakravarty, Souvik K Jan. 20, 2016, 6:50 a.m. UTC
This patch fixes compile time warnings when CONFIG_PM_SLEEP
is undefined. In this case sleep related counters are unused.

Signed-off-by: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
---
 drivers/platform/x86/intel_telemetry_debugfs.c |    2 ++
 1 file changed, 2 insertions(+)

Comments

Darren Hart Jan. 21, 2016, 9:51 p.m. UTC | #1
On Wed, Jan 20, 2016 at 12:20:46PM +0530, Souvik Kumar Chakravarty wrote:
> This patch fixes compile time warnings when CONFIG_PM_SLEEP
> is undefined. In this case sleep related counters are unused.
> 
> Signed-off-by: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>

Thanks, queued to testing.
diff mbox

Patch

diff --git a/drivers/platform/x86/intel_telemetry_debugfs.c b/drivers/platform/x86/intel_telemetry_debugfs.c
index 5b31d15..f5134ac 100644
--- a/drivers/platform/x86/intel_telemetry_debugfs.c
+++ b/drivers/platform/x86/intel_telemetry_debugfs.c
@@ -96,9 +96,11 @@ 
 	} \
 }
 
+#ifdef CONFIG_PM_SLEEP
 static u8 suspend_prep_ok;
 static u32 suspend_shlw_ctr_temp, suspend_deep_ctr_temp;
 static u64 suspend_shlw_res_temp, suspend_deep_res_temp;
+#endif
 
 struct telemetry_susp_stats {
 	u32 shlw_swake_ctr;