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