aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/thinkpad_acpi.c29
1 files changed, 18 insertions, 11 deletions
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
index c83ec94eb8d9..3367df9d4f99 100644
--- a/drivers/platform/x86/thinkpad_acpi.c
+++ b/drivers/platform/x86/thinkpad_acpi.c
@@ -184,17 +184,6 @@ enum {
184#define TPACPI_DBG_ALL 0xffff 184#define TPACPI_DBG_ALL 0xffff
185#define TPACPI_DBG_INIT 0x0001 185#define TPACPI_DBG_INIT 0x0001
186#define TPACPI_DBG_EXIT 0x0002 186#define TPACPI_DBG_EXIT 0x0002
187#define dbg_printk(a_dbg_level, format, arg...) \
188 do { if (dbg_level & a_dbg_level) \
189 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
190 } while (0)
191#ifdef CONFIG_THINKPAD_ACPI_DEBUG
192#define vdbg_printk(a_dbg_level, format, arg...) \
193 dbg_printk(a_dbg_level, format, ## arg)
194static const char *str_supported(int is_supported);
195#else
196#define vdbg_printk(a_dbg_level, format, arg...)
197#endif
198 187
199#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off") 188#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
200#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled") 189#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
@@ -326,6 +315,24 @@ static int tpacpi_uwb_emulstate;
326#endif 315#endif
327 316
328 317
318/*************************************************************************
319 * Debugging helpers
320 */
321
322#define dbg_printk(a_dbg_level, format, arg...) \
323 do { if (dbg_level & (a_dbg_level)) \
324 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
325 } while (0)
326
327#ifdef CONFIG_THINKPAD_ACPI_DEBUG
328#define vdbg_printk dbg_printk
329static const char *str_supported(int is_supported);
330#else
331#define vdbg_printk(a_dbg_level, format, arg...) \
332 do { } while (0)
333#endif
334
335
329/**************************************************************************** 336/****************************************************************************
330 **************************************************************************** 337 ****************************************************************************
331 * 338 *