diff options
author | Joe Perches <joe@perches.com> | 2012-12-18 01:31:30 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-03 07:10:21 -0500 |
commit | 23415eb5233eb3c1939c4cb7d6235af98a3a2955 (patch) | |
tree | 936454525eed8574951a49a49a3c59306157b39d /drivers/acpi | |
parent | 5cc36c724eb60b5e5457807f3230e5bb5454e4d0 (diff) |
ACPI / glue: Update DBG macro to include KERN_DEBUG
Currently these DBG statements are emitted at KERN_DEFAULT.
Change the macro to emit at KERN_DEBUG.
This can help avoid unexpected message interleaving.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/glue.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 01551840d236..95af6f674a6c 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c | |||
@@ -18,9 +18,14 @@ | |||
18 | 18 | ||
19 | #define ACPI_GLUE_DEBUG 0 | 19 | #define ACPI_GLUE_DEBUG 0 |
20 | #if ACPI_GLUE_DEBUG | 20 | #if ACPI_GLUE_DEBUG |
21 | #define DBG(x...) printk(PREFIX x) | 21 | #define DBG(fmt, ...) \ |
22 | printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__) | ||
22 | #else | 23 | #else |
23 | #define DBG(x...) do { } while(0) | 24 | #define DBG(fmt, ...) \ |
25 | do { \ | ||
26 | if (0) \ | ||
27 | printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \ | ||
28 | } while (0) | ||
24 | #endif | 29 | #endif |
25 | static LIST_HEAD(bus_type_list); | 30 | static LIST_HEAD(bus_type_list); |
26 | static DECLARE_RWSEM(bus_type_sem); | 31 | static DECLARE_RWSEM(bus_type_sem); |