mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-06 02:24:14 +08:00
5cdc5bd8b2
* 'musb-hw' of git://gitorious.org/usb/usb: (43 commits) usb: musb: core: kill unneeded #include's DA8xx: assign name to MUSB IRQ resource arm: OMAP4430: musb: Configure musb to OTG mode usb: musb: Adding musb support for OMAP4430 usb: otg: TWL6030: Add twl6030_usb file for compilation mfd: TWL6030: OMAP4: Registering the TWL6030-usb device usb: musb: TWL6030: Selecting TWL6030_USB transceiver usb: otg: Kconfig: Add Kconfig option for TWL6030 transceiver. usb: otg: Adding twl6030-usb transceiver driver for OMAP4430 mfd: TWL6030: USBOTG VBUS event generation on usb: musb: add support for ux500 platform musb: am35x: fix compile error due to control apis arm: omap4: enable usb on 4430sdp usb: musb: drop board_set_vbus usb: musb: drop musb_platform_suspend/resume usb: musb: blackfin: usb dev_pm_ops structure usb: musb: am35x: usb dev_pm_ops structure usb: musb: omap2430: use dev_pm_ops structure usb: musb: omap2430: drop the nops usb: musb: mark musb_save/restore_context static ...
21 lines
605 B
Makefile
21 lines
605 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_MSM_OTG_72K) += msm72k_otg.o
|
|
obj-$(CONFIG_AB8500_USB) += ab8500-usb.o
|