aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/media/rc/ene_ir.h
diff options
context:
space:
mode:
authorMaxim Levitsky <maximlevitsky@gmail.com>2013-07-07 20:22:47 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-07-29 11:49:45 -0300
commit408ed9924c0d56d07e0888f6ae560a534ce5c18f (patch)
treee67cb891774fd7ae5283fa7601351faf3b678b33 /drivers/media/rc/ene_ir.h
parent[media] ene_ir: disable the device if wake is disabled (diff)
downloadwireguard-linux-408ed9924c0d56d07e0888f6ae560a534ce5c18f.tar.xz
wireguard-linux-408ed9924c0d56d07e0888f6ae560a534ce5c18f.zip
[media] ene_ir: don't use pr_debug after all
This way to only way to get debug info is to use dynamic debug, but I left debugging prints to debug hardware issues, and so I want this to be enabled by module param. Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/rc/ene_ir.h')
-rw-r--r--drivers/media/rc/ene_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/ene_ir.h b/drivers/media/rc/ene_ir.h
index 6f978e85db8c..a7911e3b9bc0 100644
--- a/drivers/media/rc/ene_ir.h
+++ b/drivers/media/rc/ene_ir.h
@@ -185,7 +185,7 @@
#define __dbg(level, format, ...) \
do { \
if (debug >= level) \
- pr_debug(format "\n", ## __VA_ARGS__); \
+ pr_info(format "\n", ## __VA_ARGS__); \
} while (0)
#define dbg(format, ...) __dbg(1, format, ## __VA_ARGS__)