mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
ee398ba97d
Add generic access ops for controllers with a ulpi viewport register (e.g. Chipidea/ARC based controllers). Signed-off-by: Benoit Goby <benoit@android.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
22 lines
649 B
Makefile
22 lines
649 B
Makefile
#
|
|
# OTG infrastructure and transceiver drivers
|
|
#
|
|
|
|
ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG
|
|
ccflags-$(CONFIG_USB_GADGET_DEBUG) += -DDEBUG
|
|
|
|
# infrastructure
|
|
obj-$(CONFIG_USB_OTG_UTILS) += otg.o
|
|
|
|
# transceiver drivers
|
|
obj-$(CONFIG_USB_GPIO_VBUS) += gpio_vbus.o
|
|
obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o
|
|
obj-$(CONFIG_TWL4030_USB) += twl4030-usb.o
|
|
obj-$(CONFIG_TWL6030_USB) += twl6030-usb.o
|
|
obj-$(CONFIG_USB_LANGWELL_OTG) += langwell_otg.o
|
|
obj-$(CONFIG_NOP_USB_XCEIV) += nop-usb-xceiv.o
|
|
obj-$(CONFIG_USB_ULPI) += ulpi.o
|
|
obj-$(CONFIG_USB_ULPI_VIEWPORT) += ulpi_viewport.o
|
|
obj-$(CONFIG_USB_MSM_OTG) += msm_otg.o
|
|
obj-$(CONFIG_AB8500_USB) += ab8500-usb.o
|