diff options
| -rw-r--r-- | drivers/media/video/Kconfig | 36 | ||||
| -rw-r--r-- | drivers/media/video/usbvideo/Kconfig | 39 | ||||
| -rw-r--r-- | drivers/media/video/usbvideo/Makefile | 8 |
3 files changed, 45 insertions, 38 deletions
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index e585340349c0..fbb2a490574b 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig | |||
| @@ -374,15 +374,6 @@ menu "V4L USB devices" | |||
| 374 | 374 | ||
| 375 | source "drivers/media/video/em28xx/Kconfig" | 375 | source "drivers/media/video/em28xx/Kconfig" |
| 376 | 376 | ||
| 377 | config USB_VICAM | ||
| 378 | tristate "USB 3com HomeConnect (aka vicam) support (EXPERIMENTAL)" | ||
| 379 | depends on USB && VIDEO_DEV && EXPERIMENTAL | ||
| 380 | ---help--- | ||
| 381 | Say Y here if you have 3com homeconnect camera (vicam). | ||
| 382 | |||
| 383 | To compile this driver as a module, choose M here: the | ||
| 384 | module will be called vicam. | ||
| 385 | |||
| 386 | config USB_DSBR | 377 | config USB_DSBR |
| 387 | tristate "D-Link USB FM radio support (EXPERIMENTAL)" | 378 | tristate "D-Link USB FM radio support (EXPERIMENTAL)" |
| 388 | depends on USB && VIDEO_DEV && EXPERIMENTAL | 379 | depends on USB && VIDEO_DEV && EXPERIMENTAL |
| @@ -395,32 +386,9 @@ config USB_DSBR | |||
| 395 | To compile this driver as a module, choose M here: the | 386 | To compile this driver as a module, choose M here: the |
| 396 | module will be called dsbr100. | 387 | module will be called dsbr100. |
| 397 | 388 | ||
| 398 | source "drivers/media/video/et61x251/Kconfig" | 389 | source "drivers/media/video/usbvideo/Kconfig" |
| 399 | |||
| 400 | config USB_IBMCAM | ||
| 401 | tristate "USB IBM (Xirlink) C-it Camera support" | ||
| 402 | depends on USB && VIDEO_DEV | ||
| 403 | ---help--- | ||
| 404 | Say Y here if you want to connect a IBM "C-It" camera, also known as | ||
| 405 | "Xirlink PC Camera" to your computer's USB port. For more | ||
| 406 | information, read <file:Documentation/usb/ibmcam.txt>. | ||
| 407 | 390 | ||
| 408 | To compile this driver as a module, choose M here: the | 391 | source "drivers/media/video/et61x251/Kconfig" |
| 409 | module will be called ibmcam. | ||
| 410 | |||
| 411 | This camera has several configuration options which | ||
| 412 | can be specified when you load the module. Read | ||
| 413 | <file:Documentation/usb/ibmcam.txt> to learn more. | ||
| 414 | |||
| 415 | config USB_KONICAWC | ||
| 416 | tristate "USB Konica Webcam support" | ||
| 417 | depends on USB && VIDEO_DEV | ||
| 418 | ---help--- | ||
| 419 | Say Y here if you want support for webcams based on a Konica | ||
| 420 | chipset. This is known to work with the Intel YC76 webcam. | ||
| 421 | |||
| 422 | To compile this driver as a module, choose M here: the | ||
| 423 | module will be called konicawc. | ||
| 424 | 392 | ||
| 425 | config USB_OV511 | 393 | config USB_OV511 |
| 426 | tristate "USB OV511 Camera support" | 394 | tristate "USB OV511 Camera support" |
diff --git a/drivers/media/video/usbvideo/Kconfig b/drivers/media/video/usbvideo/Kconfig new file mode 100644 index 000000000000..bb0d1fa4eac1 --- /dev/null +++ b/drivers/media/video/usbvideo/Kconfig | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | config VIDEO_USBVIDEO | ||
| 2 | tristate | ||
| 3 | |||
| 4 | config USB_VICAM | ||
| 5 | tristate "USB 3com HomeConnect (aka vicam) support (EXPERIMENTAL)" | ||
| 6 | depends on USB && VIDEO_DEV && EXPERIMENTAL | ||
| 7 | select VIDEO_USBVIDEO | ||
| 8 | ---help--- | ||
| 9 | Say Y here if you have 3com homeconnect camera (vicam). | ||
| 10 | |||
| 11 | To compile this driver as a module, choose M here: the | ||
| 12 | module will be called vicam. | ||
| 13 | |||
| 14 | config USB_IBMCAM | ||
| 15 | tristate "USB IBM (Xirlink) C-it Camera support" | ||
| 16 | depends on USB && VIDEO_DEV | ||
| 17 | select VIDEO_USBVIDEO | ||
| 18 | ---help--- | ||
| 19 | Say Y here if you want to connect a IBM "C-It" camera, also known as | ||
| 20 | "Xirlink PC Camera" to your computer's USB port. For more | ||
| 21 | information, read <file:Documentation/usb/ibmcam.txt>. | ||
| 22 | |||
| 23 | To compile this driver as a module, choose M here: the | ||
| 24 | module will be called ibmcam. | ||
| 25 | |||
| 26 | This camera has several configuration options which | ||
| 27 | can be specified when you load the module. Read | ||
| 28 | <file:Documentation/usb/ibmcam.txt> to learn more. | ||
| 29 | |||
| 30 | config USB_KONICAWC | ||
| 31 | tristate "USB Konica Webcam support" | ||
| 32 | depends on USB && VIDEO_DEV | ||
| 33 | select VIDEO_USBVIDEO | ||
| 34 | ---help--- | ||
| 35 | Say Y here if you want support for webcams based on a Konica | ||
| 36 | chipset. This is known to work with the Intel YC76 webcam. | ||
| 37 | |||
| 38 | To compile this driver as a module, choose M here: the | ||
| 39 | module will be called konicawc. | ||
diff --git a/drivers/media/video/usbvideo/Makefile b/drivers/media/video/usbvideo/Makefile index ed410a5ee8c9..bb52eb8dc2f9 100644 --- a/drivers/media/video/usbvideo/Makefile +++ b/drivers/media/video/usbvideo/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | obj-$(CONFIG_USB_IBMCAM) += ibmcam.o usbvideo.o ultracam.o | 1 | obj-$(CONFIG_VIDEO_USBVIDEO) += usbvideo.o |
| 2 | obj-$(CONFIG_USB_KONICAWC) += konicawc.o usbvideo.o | 2 | obj-$(CONFIG_USB_IBMCAM) += ibmcam.o ultracam.o |
| 3 | obj-$(CONFIG_USB_VICAM) += vicam.o usbvideo.o | 3 | obj-$(CONFIG_USB_KONICAWC) += konicawc.o |
| 4 | 4 | obj-$(CONFIG_USB_VICAM) += vicam.o | |
