mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
3482528e9a
CONFIG_USB_DEBUG is going away, so remove the few places in the USB core that relied on them. This means that we always now do the "debug" checks for every urb submitted, which is a good idea, as who knows how many driver bugs we have been ignoring when people forget to enable this option. Also, with the overall speed of USB, doing these extra checks should not cause any additional overhead. Also, no longer announce all devices being added to the system if CONFIG_USB_DEBUG is enabled, as it's not going to be around much longer. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
350 B
Makefile
14 lines
350 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
|
|
|
|
usbcore-$(CONFIG_PCI) += hcd-pci.o
|
|
usbcore-$(CONFIG_ACPI) += usb-acpi.o
|
|
|
|
obj-$(CONFIG_USB) += usbcore.o
|