diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-05-02 14:57:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:42 -0400 |
commit | a9914127e834acf648a96c72b4e271dc0c1c7c74 (patch) | |
tree | c7250c7ec6991ba2e41f902dccbc1c55c621f9f3 /drivers/usb/gadget/Makefile | |
parent | cdda479f15cd13fa50a913ca85129c0437cc7b91 (diff) |
USB gadget: Webcam device
This webcam gadget instantiates a UVC camera (360p and 720p resolutions
in YUYV and MJPEG).
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/Makefile')
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 3075ff9cae62..03a27d921c26 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -45,6 +45,7 @@ g_cdc-objs := cdc2.o | |||
45 | g_multi-objs := multi.o | 45 | g_multi-objs := multi.o |
46 | g_hid-objs := hid.o | 46 | g_hid-objs := hid.o |
47 | g_nokia-objs := nokia.o | 47 | g_nokia-objs := nokia.o |
48 | g_webcam-objs := webcam.o | ||
48 | 49 | ||
49 | obj-$(CONFIG_USB_ZERO) += g_zero.o | 50 | obj-$(CONFIG_USB_ZERO) += g_zero.o |
50 | obj-$(CONFIG_USB_AUDIO) += g_audio.o | 51 | obj-$(CONFIG_USB_AUDIO) += g_audio.o |
@@ -59,4 +60,5 @@ obj-$(CONFIG_USB_CDC_COMPOSITE) += g_cdc.o | |||
59 | obj-$(CONFIG_USB_G_HID) += g_hid.o | 60 | obj-$(CONFIG_USB_G_HID) += g_hid.o |
60 | obj-$(CONFIG_USB_G_MULTI) += g_multi.o | 61 | obj-$(CONFIG_USB_G_MULTI) += g_multi.o |
61 | obj-$(CONFIG_USB_G_NOKIA) += g_nokia.o | 62 | obj-$(CONFIG_USB_G_NOKIA) += g_nokia.o |
63 | obj-$(CONFIG_USB_G_WEBCAM) += g_webcam.o | ||
62 | 64 | ||