diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 199d95bf85b573412639e7abcb913224c345102c..af43f92d3a3512712c0e1a53d11d60382633c1e6 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig @@ -486,17 +486,7 @@ config USB_W9968CF To compile this driver as a module, choose M here: the module will be called w9968cf. -config USB_ZC0301 - tristate "USB ZC0301 Image Processor and Control Chip support" - depends on USB && VIDEO_DEV - ---help--- - Say Y here if you want support for cameras based on the ZC0301 - Image Processor and Control Chip. - - See for more informations. - - To compile this driver as a module, choose M here: the - module will be called zc0301. +source "drivers/media/video/zc0301/Kconfig" config USB_PWC tristate "USB Philips Cameras" diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile index 10c921f72548137b9af98e4a029730ef8f2bff4b..e318b00fb38622b0e9da5179b85be6d9df358cbf 100644 --- a/drivers/media/video/Makefile +++ b/drivers/media/video/Makefile @@ -65,8 +65,6 @@ obj-$(CONFIG_VIDEO_CX25840) += cx25840/ obj-$(CONFIG_VIDEO_SAA711X) += saa7115.o obj-$(CONFIG_VIDEO_SAA7127) += saa7127.o -zc0301-objs := zc0301_core.o zc0301_pas202bcb.o - obj-$(CONFIG_USB_DABUSB) += dabusb.o obj-$(CONFIG_USB_DSBR) += dsbr100.o obj-$(CONFIG_USB_OV511) += ov511.o diff --git a/drivers/media/video/zc0301/Kconfig b/drivers/media/video/zc0301/Kconfig new file mode 100644 index 0000000000000000000000000000000000000000..b722840ee32941dbf2f9655bfe48a92f79ad8a46 --- /dev/null +++ b/drivers/media/video/zc0301/Kconfig @@ -0,0 +1,11 @@ +config USB_ZC0301 + tristate "USB ZC0301 Image Processor and Control Chip support" + depends on USB && VIDEO_DEV + ---help--- + Say Y here if you want support for cameras based on the ZC0301 + Image Processor and Control Chip. + + See for more informations. + + To compile this driver as a module, choose M here: the + module will be called zc0301.