Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271729
b: refs/heads/master
c: 86b0dbe
h: refs/heads/master
i:
  271727: 78d5493
v: v3
  • Loading branch information
Joe Perches authored and Mauro Carvalho Chehab committed Sep 3, 2011
1 parent dbbf021 commit 21a84e6
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 44d0b80e5ff741d502a6ccc8685a18bda1ac9da4
refs/heads/master: 86b0dbef777a1fbb9922e304f047921d4e9d9c40
7 changes: 5 additions & 2 deletions trunk/include/media/rc-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@
#include <media/rc-map.h>

extern int rc_core_debug;
#define IR_dprintk(level, fmt, arg...) if (rc_core_debug >= level) \
printk(KERN_DEBUG "%s: " fmt , __func__, ## arg)
#define IR_dprintk(level, fmt, ...) \
do { \
if (rc_core_debug >= level) \
pr_debug("%s: " fmt, __func__, ##__VA_ARGS__); \
} while (0)

enum rc_driver_type {
RC_DRIVER_SCANCODE = 0, /* Driver or hardware generates a scancode */
Expand Down

0 comments on commit 21a84e6

Please sign in to comment.