diff options
author | Sean Young <sean@mess.org> | 2018-02-12 15:27:50 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-02-14 22:15:46 +0300 |
commit | 1f17f684d9ea3aafccbb5d727b19c5ffafb07e75 (patch) | |
tree | 0ce6f64e989c47c5c941801e718d54243a54d99a /include/media/rc-core.h | |
parent | 50078a903830796a8a47f26edc4cc10b9061711f (diff) | |
download | linux-1f17f684d9ea3aafccbb5d727b19c5ffafb07e75.tar.xz |
media: rc: remove IR_dprintk() from rc-core
Use dev_dbg() rather than custom debug function.
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/media/rc-core.h')
-rw-r--r-- | include/media/rc-core.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/media/rc-core.h b/include/media/rc-core.h index aed4272d47f5..fc3a92668bab 100644 --- a/include/media/rc-core.h +++ b/include/media/rc-core.h @@ -23,13 +23,6 @@ #include <linux/timer.h> #include <media/rc-map.h> -extern int rc_core_debug; -#define IR_dprintk(level, fmt, ...) \ -do { \ - if (rc_core_debug >= level) \ - printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); \ -} while (0) - /** * enum rc_driver_type - type of the RC driver. * |