summaryrefslogtreecommitdiff
path: root/drivers/media/dvb-core/Kconfig
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-12-11 11:37:26 -0500
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-12-19 06:29:27 -0500
commitba711e1cee755392a23686a47a64cdedbdb6e13e (patch)
tree94d802cd4bb24d2a369f9eba7dc528ba489881f4 /drivers/media/dvb-core/Kconfig
parentb93a25e120d5a4154c8902957e7440b10b47a260 (diff)
media: dvb-core: allow users to enable DVB net ULE debug
This debug option is there for a long time, but it is only enabled by editing the source code. Due to that, a breakage inside its code was only noticed years after a change at the ULE handling logic. Make it a Kconfig parameter, as it makes easier for advanced users to enable, and allow test if the compilation won't be broken in the future. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/dvb-core/Kconfig')
-rw-r--r--drivers/media/dvb-core/Kconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/media/dvb-core/Kconfig b/drivers/media/dvb-core/Kconfig
index eeef94a0c84e..f004aea352e0 100644
--- a/drivers/media/dvb-core/Kconfig
+++ b/drivers/media/dvb-core/Kconfig
@@ -40,3 +40,16 @@ config DVB_DEMUX_SECTION_LOSS_LOG
be very verbose.
If you are unsure about this, say N here.
+
+config DVB_ULE_DEBUG
+ bool "Enable DVB net ULE packet debug messages"
+ depends on DVB_CORE
+ default n
+ help
+ Enable extra log messages meant to detect problems while
+ handling DVB network ULE packet loss inside the Kernel.
+
+ Should not be enabled on normal cases, as logs can
+ be very verbose.
+
+ If you are unsure about this, say N here.