mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
137c579c12
We have quite a few ISA radio drivers, which are all very similar. This framework makes it possible to reduce the code size of those drivers and makes it much easier to keep them up to date with the latest V4L2 API developments. Drivers rewritten to use this framework fully pass the v4l2-compliance tests and are properly using the ISA bus (so they can be found under /sys/bus/isa). It is now also possible to support multiple cards using the same driver (tested with two radio-gemtek cards). Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
33 lines
1.2 KiB
Makefile
33 lines
1.2 KiB
Makefile
#
|
|
# Makefile for the kernel character device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_RADIO_ISA) += radio-isa.o
|
|
obj-$(CONFIG_RADIO_AZTECH) += radio-aztech.o
|
|
obj-$(CONFIG_RADIO_RTRACK2) += radio-rtrack2.o
|
|
obj-$(CONFIG_RADIO_SF16FMI) += radio-sf16fmi.o
|
|
obj-$(CONFIG_RADIO_SF16FMR2) += radio-sf16fmr2.o
|
|
obj-$(CONFIG_RADIO_CADET) += radio-cadet.o
|
|
obj-$(CONFIG_RADIO_TYPHOON) += radio-typhoon.o
|
|
obj-$(CONFIG_RADIO_TERRATEC) += radio-terratec.o
|
|
obj-$(CONFIG_RADIO_MAXIRADIO) += radio-maxiradio.o
|
|
obj-$(CONFIG_RADIO_RTRACK) += radio-aimslab.o
|
|
obj-$(CONFIG_RADIO_ZOLTRIX) += radio-zoltrix.o
|
|
obj-$(CONFIG_RADIO_GEMTEK) += radio-gemtek.o
|
|
obj-$(CONFIG_RADIO_TRUST) += radio-trust.o
|
|
obj-$(CONFIG_I2C_SI4713) += si4713-i2c.o
|
|
obj-$(CONFIG_RADIO_SI4713) += radio-si4713.o
|
|
obj-$(CONFIG_RADIO_MIROPCM20) += radio-miropcm20.o
|
|
obj-$(CONFIG_USB_DSBR) += dsbr100.o
|
|
obj-$(CONFIG_RADIO_SI470X) += si470x/
|
|
obj-$(CONFIG_USB_MR800) += radio-mr800.o
|
|
obj-$(CONFIG_USB_KEENE) += radio-keene.o
|
|
obj-$(CONFIG_RADIO_TEA5764) += radio-tea5764.o
|
|
obj-$(CONFIG_RADIO_SAA7706H) += saa7706h.o
|
|
obj-$(CONFIG_RADIO_TEF6862) += tef6862.o
|
|
obj-$(CONFIG_RADIO_TIMBERDALE) += radio-timb.o
|
|
obj-$(CONFIG_RADIO_WL1273) += radio-wl1273.o
|
|
obj-$(CONFIG_RADIO_WL128X) += wl128x/
|
|
|
|
ccflags-y += -Isound
|