xref: /openbmc/linux/drivers/media/dvb-core/Kconfig (revision be709d48)
1#
2# DVB device configuration
3#
4
5config DVB_MAX_ADAPTERS
6	int "maximum number of DVB/ATSC adapters"
7	depends on DVB_CORE
8	default 16
9	range 1 255
10	help
11	  Maximum number of DVB/ATSC adapters. Increasing this number
12	  increases the memory consumption of the DVB subsystem even
13	  if a much lower number of DVB/ATSC adapters is present.
14	  Only values in the range 4-32 are tested.
15
16	  If you are unsure about this, use the default value 16
17
18config DVB_DYNAMIC_MINORS
19	bool "Dynamic DVB minor allocation"
20	depends on DVB_CORE
21	default n
22	help
23	  If you say Y here, the DVB subsystem will use dynamic minor
24	  allocation for any device that uses the DVB major number.
25	  This means that you can have more than 4 of a single type
26	  of device (like demuxes and frontends) per adapter, but udev
27	  will be required to manage the device nodes.
28
29	  If you are unsure about this, say N here.
30
31config DVB_DEMUX_SECTION_LOSS_LOG
32	bool "Enable DVB demux section packet loss log"
33	depends on DVB_CORE
34	default n
35	help
36	  Enable extra log messages meant to detect packet loss
37	  inside the Kernel.
38
39	  Should not be enabled on normal cases, as logs can
40	  be very verbose.
41
42	  If you are unsure about this, say N here.
43
44config DVB_ULE_DEBUG
45	bool "Enable DVB net ULE packet debug messages"
46	depends on DVB_CORE
47	default n
48	help
49	  Enable extra log messages meant to detect problems while
50	  handling DVB network ULE packet loss inside the Kernel.
51
52	  Should not be enabled on normal cases, as logs can
53	  be very verbose.
54
55	  If you are unsure about this, say N here.
56