[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>
This commit is contained in:
parent
b5daad2f13
commit
408ed9924c
|
@ -185,7 +185,7 @@
|
||||||
#define __dbg(level, format, ...) \
|
#define __dbg(level, format, ...) \
|
||||||
do { \
|
do { \
|
||||||
if (debug >= level) \
|
if (debug >= level) \
|
||||||
pr_debug(format "\n", ## __VA_ARGS__); \
|
pr_info(format "\n", ## __VA_ARGS__); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define dbg(format, ...) __dbg(1, format, ## __VA_ARGS__)
|
#define dbg(format, ...) __dbg(1, format, ## __VA_ARGS__)
|
||||||
|
|
Loading…
Reference in New Issue