mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
31e7f6c015
This patch prepares onboad_hub to support non-hub devices by renaming the driver files and their content, the headers and their references. The comments and descriptions have been slightly modified to keep coherence and account for the specific cases that only affect onboard hubs (e.g. peer-hub). The "hub" variables in functions where "dev" (and similar names) variables already exist have been renamed to onboard_dev for clarity, which adds a few lines in cases where more than 80 characters are used. No new functionality has been added. Acked-by: Matthias Kaehlcke <mka@chromium.org> Signed-off-by: Javier Carrasco <javier.carrasco@wolfvision.net> Link: https://lore.kernel.org/r/20240325-onboard_xvf3500-v8-2-29e3f9222922@wolfvision.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
1.4 KiB
Makefile
37 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the rest of the USB drivers
|
|
# (the ones that don't fit into any other categories)
|
|
#
|
|
obj-$(CONFIG_USB_ADUTUX) += adutux.o
|
|
obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o
|
|
obj-$(CONFIG_USB_CYPRESS_CY7C63) += cypress_cy7c63.o
|
|
obj-$(CONFIG_USB_CYTHERM) += cytherm.o
|
|
obj-$(CONFIG_USB_EMI26) += emi26.o
|
|
obj-$(CONFIG_USB_EMI62) += emi62.o
|
|
obj-$(CONFIG_USB_EZUSB_FX2) += ezusb.o
|
|
obj-$(CONFIG_APPLE_MFI_FASTCHARGE) += apple-mfi-fastcharge.o
|
|
obj-$(CONFIG_USB_LJCA) += usb-ljca.o
|
|
obj-$(CONFIG_USB_IDMOUSE) += idmouse.o
|
|
obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o
|
|
obj-$(CONFIG_USB_ISIGHTFW) += isight_firmware.o
|
|
obj-$(CONFIG_USB_LCD) += usblcd.o
|
|
obj-$(CONFIG_USB_LD) += ldusb.o
|
|
obj-$(CONFIG_USB_LEGOTOWER) += legousbtower.o
|
|
obj-$(CONFIG_USB_QCOM_EUD) += qcom_eud.o
|
|
obj-$(CONFIG_USB_TEST) += usbtest.o
|
|
obj-$(CONFIG_USB_EHSET_TEST_FIXTURE) += ehset.o
|
|
obj-$(CONFIG_USB_TRANCEVIBRATOR) += trancevibrator.o
|
|
obj-$(CONFIG_USB_USS720) += uss720.o
|
|
obj-$(CONFIG_USB_SEVSEG) += usbsevseg.o
|
|
obj-$(CONFIG_USB_YUREX) += yurex.o
|
|
obj-$(CONFIG_USB_HUB_USB251XB) += usb251xb.o
|
|
obj-$(CONFIG_USB_HSIC_USB3503) += usb3503.o
|
|
obj-$(CONFIG_USB_HSIC_USB4604) += usb4604.o
|
|
obj-$(CONFIG_USB_CHAOSKEY) += chaoskey.o
|
|
|
|
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
|
|
obj-$(CONFIG_USB_LINK_LAYER_TEST) += lvstest.o
|
|
obj-$(CONFIG_BRCM_USB_PINMAP) += brcmstb-usb-pinmap.o
|
|
obj-$(CONFIG_USB_ONBOARD_DEV) += onboard_usb_dev.o
|