mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 12:44:11 +08:00
56280c64ec
This is a very old driver for very old hardware and it is one of the very few remaining that does not use the vb2 framework (or even the older videobuf framework), so deprecate this driver and move it to staging with the intent to removing it altogether by the end of 2022. If someone wants to keep this driver, then it has to be converted to use vb2. Reviewed-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the USB media device drivers
|
|
#
|
|
|
|
# DVB USB-only drivers. Please keep it alphabetically sorted by directory name
|
|
# (e. g. LC_ALL=C sort Makefile)
|
|
obj-y += b2c2/
|
|
obj-y += dvb-usb/
|
|
obj-y += dvb-usb-v2/
|
|
obj-y += s2255/
|
|
obj-y += siano/
|
|
obj-y += ttusb-budget/
|
|
obj-y += ttusb-dec/
|
|
obj-y += zr364xx/
|
|
|
|
# Please keep it alphabetically sorted by Kconfig name
|
|
# (e. g. LC_ALL=C sort Makefile)
|
|
obj-$(CONFIG_DVB_AS102) += as102/
|
|
obj-$(CONFIG_USB_AIRSPY) += airspy/
|
|
obj-$(CONFIG_USB_GSPCA) += gspca/
|
|
obj-$(CONFIG_USB_HACKRF) += hackrf/
|
|
obj-$(CONFIG_USB_MSI2500) += msi2500/
|
|
obj-$(CONFIG_USB_PWC) += pwc/
|
|
obj-$(CONFIG_USB_VIDEO_CLASS) += uvc/
|
|
obj-$(CONFIG_VIDEO_AU0828) += au0828/
|
|
obj-$(CONFIG_VIDEO_CPIA2) += cpia2/
|
|
obj-$(CONFIG_VIDEO_CX231XX) += cx231xx/
|
|
obj-$(CONFIG_VIDEO_EM28XX) += em28xx/
|
|
obj-$(CONFIG_VIDEO_GO7007) += go7007/
|
|
obj-$(CONFIG_VIDEO_HDPVR) += hdpvr/
|
|
obj-$(CONFIG_VIDEO_PVRUSB2) += pvrusb2/
|
|
obj-$(CONFIG_VIDEO_STK1160) += stk1160/
|
|
obj-$(CONFIG_VIDEO_TM6000) += tm6000/
|
|
obj-$(CONFIG_VIDEO_USBTV) += usbtv/
|