mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
69bec72598
Although most of USB devices are hot-plug's, there are still some devices are hard wired on the board, eg, for HSIC and SSIC interface USB devices. If these kinds of USB devices are multiple functions, and they can supply other interfaces like i2c, gpios for other devices, we may need to describe these at device tree. In this commit, it uses "reg" in dts as physical port number to match the phyiscal port number decided by USB core, if they are the same, then the device node is for the device we are creating for USB core. Signed-off-by: Peter Chen <peter.chen@freescale.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de> Acked-by: Alan Stern <stern@rowland.harvard.edu> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
355 B
Makefile
14 lines
355 B
Makefile
#
|
|
# Makefile for USB Core files and filesystem
|
|
#
|
|
|
|
usbcore-y := usb.o hub.o hcd.o urb.o message.o driver.o
|
|
usbcore-y += config.o file.o buffer.o sysfs.o endpoint.o
|
|
usbcore-y += devio.o notify.o generic.o quirks.o devices.o
|
|
usbcore-y += port.o of.o
|
|
|
|
usbcore-$(CONFIG_PCI) += hcd-pci.o
|
|
usbcore-$(CONFIG_ACPI) += usb-acpi.o
|
|
|
|
obj-$(CONFIG_USB) += usbcore.o
|