diff options
Diffstat (limited to 'drivers/usb/gadget/function/Makefile')
-rw-r--r-- | drivers/usb/gadget/function/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/usb/gadget/function/Makefile b/drivers/usb/gadget/function/Makefile index 83ae1065149d..90701aa5a826 100644 --- a/drivers/usb/gadget/function/Makefile +++ b/drivers/usb/gadget/function/Makefile | |||
@@ -2,8 +2,8 @@ | |||
2 | # USB peripheral controller drivers | 2 | # USB peripheral controller drivers |
3 | # | 3 | # |
4 | 4 | ||
5 | ccflags-y := -Idrivers/usb/gadget/ | 5 | ccflags-y := -I$(srctree)/drivers/usb/gadget/ |
6 | ccflags-y += -Idrivers/usb/gadget/udc/ | 6 | ccflags-y += -I$(srctree)/drivers/usb/gadget/udc/ |
7 | 7 | ||
8 | # USB Functions | 8 | # USB Functions |
9 | usb_f_acm-y := f_acm.o | 9 | usb_f_acm-y := f_acm.o |
@@ -32,3 +32,9 @@ usb_f_mass_storage-y := f_mass_storage.o storage_common.o | |||
32 | obj-$(CONFIG_USB_F_MASS_STORAGE)+= usb_f_mass_storage.o | 32 | obj-$(CONFIG_USB_F_MASS_STORAGE)+= usb_f_mass_storage.o |
33 | usb_f_fs-y := f_fs.o | 33 | usb_f_fs-y := f_fs.o |
34 | obj-$(CONFIG_USB_F_FS) += usb_f_fs.o | 34 | obj-$(CONFIG_USB_F_FS) += usb_f_fs.o |
35 | usb_f_uac1-y := f_uac1.o u_uac1.o | ||
36 | obj-$(CONFIG_USB_F_UAC1) += usb_f_uac1.o | ||
37 | usb_f_uac2-y := f_uac2.o | ||
38 | obj-$(CONFIG_USB_F_UAC2) += usb_f_uac2.o | ||
39 | usb_f_uvc-y := f_uvc.o uvc_queue.o uvc_v4l2.o uvc_video.o | ||
40 | obj-$(CONFIG_USB_F_UVC) += usb_f_uvc.o | ||