1# SPDX-License-Identifier: GPL-2.0 2obj-$(CONFIG_USB_GSPCA) += gspca_main.o 3obj-$(CONFIG_USB_GSPCA_BENQ) += gspca_benq.o 4obj-$(CONFIG_USB_GSPCA_CONEX) += gspca_conex.o 5obj-$(CONFIG_USB_GSPCA_CPIA1) += gspca_cpia1.o 6obj-$(CONFIG_USB_GSPCA_DTCS033) += gspca_dtcs033.o 7obj-$(CONFIG_USB_GSPCA_ETOMS) += gspca_etoms.o 8obj-$(CONFIG_USB_GSPCA_FINEPIX) += gspca_finepix.o 9obj-$(CONFIG_USB_GSPCA_JEILINJ) += gspca_jeilinj.o 10obj-$(CONFIG_USB_GSPCA_JL2005BCD) += gspca_jl2005bcd.o 11obj-$(CONFIG_USB_GSPCA_KINECT) += gspca_kinect.o 12obj-$(CONFIG_USB_GSPCA_KONICA) += gspca_konica.o 13obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o 14obj-$(CONFIG_USB_GSPCA_MR97310A) += gspca_mr97310a.o 15obj-$(CONFIG_USB_GSPCA_NW80X) += gspca_nw80x.o 16obj-$(CONFIG_USB_GSPCA_OV519) += gspca_ov519.o 17obj-$(CONFIG_USB_GSPCA_OV534) += gspca_ov534.o 18obj-$(CONFIG_USB_GSPCA_OV534_9) += gspca_ov534_9.o 19obj-$(CONFIG_USB_GSPCA_PAC207) += gspca_pac207.o 20obj-$(CONFIG_USB_GSPCA_PAC7302) += gspca_pac7302.o 21obj-$(CONFIG_USB_GSPCA_PAC7311) += gspca_pac7311.o 22obj-$(CONFIG_USB_GSPCA_SE401) += gspca_se401.o 23obj-$(CONFIG_USB_GSPCA_SN9C2028) += gspca_sn9c2028.o 24obj-$(CONFIG_USB_GSPCA_SN9C20X) += gspca_sn9c20x.o 25obj-$(CONFIG_USB_GSPCA_SONIXB) += gspca_sonixb.o 26obj-$(CONFIG_USB_GSPCA_SONIXJ) += gspca_sonixj.o 27obj-$(CONFIG_USB_GSPCA_SPCA500) += gspca_spca500.o 28obj-$(CONFIG_USB_GSPCA_SPCA501) += gspca_spca501.o 29obj-$(CONFIG_USB_GSPCA_SPCA505) += gspca_spca505.o 30obj-$(CONFIG_USB_GSPCA_SPCA506) += gspca_spca506.o 31obj-$(CONFIG_USB_GSPCA_SPCA508) += gspca_spca508.o 32obj-$(CONFIG_USB_GSPCA_SPCA561) += gspca_spca561.o 33obj-$(CONFIG_USB_GSPCA_SPCA1528) += gspca_spca1528.o 34obj-$(CONFIG_USB_GSPCA_SQ905) += gspca_sq905.o 35obj-$(CONFIG_USB_GSPCA_SQ905C) += gspca_sq905c.o 36obj-$(CONFIG_USB_GSPCA_SQ930X) += gspca_sq930x.o 37obj-$(CONFIG_USB_GSPCA_SUNPLUS) += gspca_sunplus.o 38obj-$(CONFIG_USB_GSPCA_STK014) += gspca_stk014.o 39obj-$(CONFIG_USB_GSPCA_STK1135) += gspca_stk1135.o 40obj-$(CONFIG_USB_GSPCA_STV0680) += gspca_stv0680.o 41obj-$(CONFIG_USB_GSPCA_T613) += gspca_t613.o 42obj-$(CONFIG_USB_GSPCA_TOPRO) += gspca_topro.o 43obj-$(CONFIG_USB_GSPCA_TOUPTEK) += gspca_touptek.o 44obj-$(CONFIG_USB_GSPCA_TV8532) += gspca_tv8532.o 45obj-$(CONFIG_USB_GSPCA_VC032X) += gspca_vc032x.o 46obj-$(CONFIG_USB_GSPCA_VICAM) += gspca_vicam.o 47obj-$(CONFIG_USB_GSPCA_XIRLINK_CIT) += gspca_xirlink_cit.o 48obj-$(CONFIG_USB_GSPCA_ZC3XX) += gspca_zc3xx.o 49 50gspca_main-objs := gspca.o autogain_functions.o 51gspca_benq-objs := benq.o 52gspca_conex-objs := conex.o 53gspca_cpia1-objs := cpia1.o 54gspca_dtcs033-objs := dtcs033.o 55gspca_etoms-objs := etoms.o 56gspca_finepix-objs := finepix.o 57gspca_jeilinj-objs := jeilinj.o 58gspca_jl2005bcd-objs := jl2005bcd.o 59gspca_kinect-objs := kinect.o 60gspca_konica-objs := konica.o 61gspca_mars-objs := mars.o 62gspca_mr97310a-objs := mr97310a.o 63gspca_nw80x-objs := nw80x.o 64gspca_ov519-objs := ov519.o 65gspca_ov534-objs := ov534.o 66gspca_ov534_9-objs := ov534_9.o 67gspca_pac207-objs := pac207.o 68gspca_pac7302-objs := pac7302.o 69gspca_pac7311-objs := pac7311.o 70gspca_se401-objs := se401.o 71gspca_sn9c2028-objs := sn9c2028.o 72gspca_sn9c20x-objs := sn9c20x.o 73gspca_sonixb-objs := sonixb.o 74gspca_sonixj-objs := sonixj.o 75gspca_spca500-objs := spca500.o 76gspca_spca501-objs := spca501.o 77gspca_spca505-objs := spca505.o 78gspca_spca506-objs := spca506.o 79gspca_spca508-objs := spca508.o 80gspca_spca561-objs := spca561.o 81gspca_spca1528-objs := spca1528.o 82gspca_sq905-objs := sq905.o 83gspca_sq905c-objs := sq905c.o 84gspca_sq930x-objs := sq930x.o 85gspca_stk014-objs := stk014.o 86gspca_stk1135-objs := stk1135.o 87gspca_stv0680-objs := stv0680.o 88gspca_sunplus-objs := sunplus.o 89gspca_t613-objs := t613.o 90gspca_topro-objs := topro.o 91gspca_touptek-objs := touptek.o 92gspca_tv8532-objs := tv8532.o 93gspca_vc032x-objs := vc032x.o 94gspca_vicam-objs := vicam.o 95gspca_xirlink_cit-objs := xirlink_cit.o 96gspca_zc3xx-objs := zc3xx.o 97 98obj-$(CONFIG_USB_M5602) += m5602/ 99obj-$(CONFIG_USB_STV06XX) += stv06xx/ 100obj-$(CONFIG_USB_GL860) += gl860/ 101