Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348341
b: refs/heads/master
c: 23415eb
h: refs/heads/master
i:
  348339: f7c3cc6
v: v3
  • Loading branch information
Joe Perches authored and Rafael J. Wysocki committed Jan 3, 2013
1 parent f13f1ad commit 64c9ae9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5cc36c724eb60b5e5457807f3230e5bb5454e4d0
refs/heads/master: 23415eb5233eb3c1939c4cb7d6235af98a3a2955
9 changes: 7 additions & 2 deletions trunk/drivers/acpi/glue.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@

#define ACPI_GLUE_DEBUG 0
#if ACPI_GLUE_DEBUG
#define DBG(x...) printk(PREFIX x)
#define DBG(fmt, ...) \
printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
#else
#define DBG(x...) do { } while(0)
#define DBG(fmt, ...) \
do { \
if (0) \
printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \
} while (0)
#endif
static LIST_HEAD(bus_type_list);
static DECLARE_RWSEM(bus_type_sem);
Expand Down

0 comments on commit 64c9ae9

Please sign in to comment.