M7350/kernel/drivers/usb/core/Makefile

14 lines
350 B
Makefile
Raw Normal View History

2024-09-09 08:52:07 +00:00
#
# 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
2024-09-09 08:57:42 +00:00
usbcore-y += port.o
2024-09-09 08:52:07 +00:00
usbcore-$(CONFIG_PCI) += hcd-pci.o
2024-09-09 08:57:42 +00:00
usbcore-$(CONFIG_ACPI) += usb-acpi.o
2024-09-09 08:52:07 +00:00
obj-$(CONFIG_USB) += usbcore.o