diff options
-rw-r--r-- | drivers/media/radio/Kconfig | 23 | ||||
-rw-r--r-- | drivers/media/radio/Makefile | 2 |
2 files changed, 25 insertions, 0 deletions
diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 0e39edf75e76..25a36ad60c5e 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig | |||
@@ -329,6 +329,29 @@ config RADIO_ZOLTRIX_PORT | |||
329 | help | 329 | help |
330 | Enter the I/O port of your Zoltrix radio card. | 330 | Enter the I/O port of your Zoltrix radio card. |
331 | 331 | ||
332 | config I2C_SI4713 | ||
333 | tristate "I2C driver for Silicon Labs Si4713 device" | ||
334 | depends on I2C && VIDEO_V4L2 | ||
335 | ---help--- | ||
336 | Say Y here if you want support to Si4713 I2C device. | ||
337 | This device driver supports only i2c bus. | ||
338 | |||
339 | To compile this driver as a module, choose M here: the | ||
340 | module will be called si4713. | ||
341 | |||
342 | config RADIO_SI4713 | ||
343 | tristate "Silicon Labs Si4713 FM Radio Transmitter support" | ||
344 | depends on I2C && VIDEO_V4L2 | ||
345 | select I2C_SI4713 | ||
346 | ---help--- | ||
347 | Say Y here if you want support to Si4713 FM Radio Transmitter. | ||
348 | This device can transmit audio through FM. It can transmit | ||
349 | EDS and EBDS signals as well. This module is the v4l2 radio | ||
350 | interface for the i2c driver of this device. | ||
351 | |||
352 | To compile this driver as a module, choose M here: the | ||
353 | module will be called radio-si4713. | ||
354 | |||
332 | config USB_DSBR | 355 | config USB_DSBR |
333 | tristate "D-Link/GemTek USB FM radio support" | 356 | tristate "D-Link/GemTek USB FM radio support" |
334 | depends on USB && VIDEO_V4L2 | 357 | depends on USB && VIDEO_V4L2 |
diff --git a/drivers/media/radio/Makefile b/drivers/media/radio/Makefile index 18111e1fea8f..2a1be3bf4f7c 100644 --- a/drivers/media/radio/Makefile +++ b/drivers/media/radio/Makefile | |||
@@ -15,6 +15,8 @@ obj-$(CONFIG_RADIO_ZOLTRIX) += radio-zoltrix.o | |||
15 | obj-$(CONFIG_RADIO_GEMTEK) += radio-gemtek.o | 15 | obj-$(CONFIG_RADIO_GEMTEK) += radio-gemtek.o |
16 | obj-$(CONFIG_RADIO_GEMTEK_PCI) += radio-gemtek-pci.o | 16 | obj-$(CONFIG_RADIO_GEMTEK_PCI) += radio-gemtek-pci.o |
17 | obj-$(CONFIG_RADIO_TRUST) += radio-trust.o | 17 | obj-$(CONFIG_RADIO_TRUST) += radio-trust.o |
18 | obj-$(CONFIG_I2C_SI4713) += si4713-i2c.o | ||
19 | obj-$(CONFIG_RADIO_SI4713) += radio-si4713.o | ||
18 | obj-$(CONFIG_RADIO_MAESTRO) += radio-maestro.o | 20 | obj-$(CONFIG_RADIO_MAESTRO) += radio-maestro.o |
19 | obj-$(CONFIG_USB_DSBR) += dsbr100.o | 21 | obj-$(CONFIG_USB_DSBR) += dsbr100.o |
20 | obj-$(CONFIG_RADIO_SI470X) += si470x/ | 22 | obj-$(CONFIG_RADIO_SI470X) += si470x/ |