c1084a56da
The way this driver was added by f0ae849
(usb: Add Intel Langwell USB
OTG Transceiver Driver) never even compiled together with langwell_udc,
and that's the only way for it to be useful.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: stable@vger.kernel.org # v2.6.31+
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Alan Cox <alan@linux.intel.com>
Cc: linux-usb@vger.kernel.org
Signed-off-by: Felipe Balbi <balbi@ti.com>
23 lines
724 B
Makefile
23 lines
724 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_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
|
|
fsl_usb2_otg-objs := fsl_otg.o otg_fsm.o
|
|
obj-$(CONFIG_FSL_USB2_OTG) += fsl_usb2_otg.o
|
|
obj-$(CONFIG_USB_MV_OTG) += mv_otg.o
|