mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
561b29e4ec
The help text should be indented by at least two spaces after the 'help' separator. This is both good practice and the media_build system for building media drivers makes this assumption. I went through all Kconfigs under drivers/media and fixed any bad help sections. This makes it conform to the common practice and should fix problems with 'make menuconfig' when using media_build. This is due to a "WARNING" message that media_build can insert in the Kconfig and that assumes the help text is indented by at least two spaces. If not, then the Kconfig becomes invalid and 'make menuconfig' fails. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Reported-by: Thomas Kaiser <linux-dvb@kaiser-linux.li> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
18 lines
569 B
Plaintext
18 lines
569 B
Plaintext
#
|
|
# TI's wl128x FM driver based on TI's ST driver.
|
|
#
|
|
menu "Texas Instruments WL128x FM driver (ST based)"
|
|
config RADIO_WL128X
|
|
tristate "Texas Instruments WL128x FM Radio"
|
|
depends on VIDEO_V4L2 && RFKILL && TTY && TI_ST
|
|
depends on GPIOLIB || COMPILE_TEST
|
|
help
|
|
Choose Y here if you have this FM radio chip.
|
|
|
|
In order to control your radio card, you will need to use programs
|
|
that are compatible with the Video For Linux 2 API. Information on
|
|
this API and pointers to "v4l2" programs may be found at
|
|
<file:Documentation/video4linux/API.html>.
|
|
|
|
endmenu
|