diff options
author | Jean-Francois Moine <moinejf@free.fr> | 2008-10-05 03:55:24 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:37:15 -0400 |
commit | 491831260e94475d14d5465b424df955d1f20aac (patch) | |
tree | aa1e19a75a5e4460fd5ae3558e33a43d0f9aff61 /drivers | |
parent | e66c6419231cd61a1be04ef84bc6264556289e7d (diff) |
V4L/DVB (9121): gspca: Add the subdriver finepix in Kconfig and Makefile.
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/gspca/Kconfig | 9 | ||||
-rw-r--r-- | drivers/media/video/gspca/Makefile | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/media/video/gspca/Kconfig b/drivers/media/video/gspca/Kconfig index aa7f3eb7ee79..f130a218f98f 100644 --- a/drivers/media/video/gspca/Kconfig +++ b/drivers/media/video/gspca/Kconfig | |||
@@ -37,6 +37,15 @@ config USB_GSPCA_ETOMS | |||
37 | To compile this driver as a module, choose M here: the | 37 | To compile this driver as a module, choose M here: the |
38 | module will be called gspca_etoms. | 38 | module will be called gspca_etoms. |
39 | 39 | ||
40 | config USB_GSPCA_FINEPIX | ||
41 | tristate "Fujifilm FinePix USB V4L2 driver" | ||
42 | depends on VIDEO_V4L2 && USB_GSPCA | ||
43 | help | ||
44 | Say Y here if you want support for cameras based on the FinePix chip. | ||
45 | |||
46 | To compile this driver as a module, choose M here: the | ||
47 | module will be called gspca_finepix. | ||
48 | |||
40 | config USB_GSPCA_MARS | 49 | config USB_GSPCA_MARS |
41 | tristate "Mars USB Camera Driver" | 50 | tristate "Mars USB Camera Driver" |
42 | depends on VIDEO_V4L2 && USB_GSPCA | 51 | depends on VIDEO_V4L2 && USB_GSPCA |
diff --git a/drivers/media/video/gspca/Makefile b/drivers/media/video/gspca/Makefile index b87322f4a487..22734f5a6c32 100644 --- a/drivers/media/video/gspca/Makefile +++ b/drivers/media/video/gspca/Makefile | |||
@@ -1,6 +1,7 @@ | |||
1 | obj-$(CONFIG_USB_GSPCA) += gspca_main.o | 1 | obj-$(CONFIG_USB_GSPCA) += gspca_main.o |
2 | obj-$(CONFIG_USB_GSPCA_CONEX) += gspca_conex.o | 2 | obj-$(CONFIG_USB_GSPCA_CONEX) += gspca_conex.o |
3 | obj-$(CONFIG_USB_GSPCA_ETOMS) += gspca_etoms.o | 3 | obj-$(CONFIG_USB_GSPCA_ETOMS) += gspca_etoms.o |
4 | obj-$(CONFIG_USB_GSPCA_FINEPIX) += gspca_finepix.o | ||
4 | obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o | 5 | obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o |
5 | obj-$(CONFIG_USB_GSPCA_OV519) += gspca_ov519.o | 6 | obj-$(CONFIG_USB_GSPCA_OV519) += gspca_ov519.o |
6 | obj-$(CONFIG_USB_GSPCA_PAC207) += gspca_pac207.o | 7 | obj-$(CONFIG_USB_GSPCA_PAC207) += gspca_pac207.o |
@@ -23,6 +24,7 @@ obj-$(CONFIG_USB_GSPCA_ZC3XX) += gspca_zc3xx.o | |||
23 | gspca_main-objs := gspca.o | 24 | gspca_main-objs := gspca.o |
24 | gspca_conex-objs := conex.o | 25 | gspca_conex-objs := conex.o |
25 | gspca_etoms-objs := etoms.o | 26 | gspca_etoms-objs := etoms.o |
27 | gspca_finepix-objs := finepix.o | ||
26 | gspca_mars-objs := mars.o | 28 | gspca_mars-objs := mars.o |
27 | gspca_ov519-objs := ov519.o | 29 | gspca_ov519-objs := ov519.o |
28 | gspca_pac207-objs := pac207.o | 30 | gspca_pac207-objs := pac207.o |