mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

These drivers have no way to probe as there are no match tables nor devices created with a matching name in the kernel tree. Marvell UDC was only ever supported by board files which were removed in 2022. For Marvell U3D, which was added in 2012, the PXA2128 aka MMP3 support was never upstreamed with board files and only revived in 2019 with DT support. No U3D DT support has been added since then. The PLX net2272 driver was formerly used on blackfin. It also has PCI support, but that appears to be only for a development board which is likely unused given this device dates back to 2006. Cc: Lubomir Rintel <lkundrak@v3.sk> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Link: https://lore.kernel.org/r/20250407191756.3584261-1-robh@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
892 B
Makefile
24 lines
892 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for physical layer USB drivers
|
|
#
|
|
obj-$(CONFIG_USB_PHY) += phy.o
|
|
obj-$(CONFIG_OF) += of.o
|
|
|
|
# transceiver drivers, keep the list sorted
|
|
|
|
obj-$(CONFIG_AB8500_USB) += phy-ab8500-usb.o
|
|
obj-$(CONFIG_FSL_USB2_OTG) += phy-fsl-usb.o
|
|
obj-$(CONFIG_NOP_USB_XCEIV) += phy-generic.o
|
|
obj-$(CONFIG_TAHVO_USB) += phy-tahvo.o
|
|
obj-$(CONFIG_AM335X_CONTROL_USB) += phy-am335x-control.o
|
|
obj-$(CONFIG_AM335X_PHY_USB) += phy-am335x.o
|
|
obj-$(CONFIG_OMAP_OTG) += phy-omap-otg.o
|
|
obj-$(CONFIG_TWL6030_USB) += phy-twl6030-usb.o
|
|
obj-$(CONFIG_USB_TEGRA_PHY) += phy-tegra-usb.o
|
|
obj-$(CONFIG_USB_GPIO_VBUS) += phy-gpio-vbus-usb.o
|
|
obj-$(CONFIG_USB_ISP1301) += phy-isp1301.o
|
|
obj-$(CONFIG_USB_MXS_PHY) += phy-mxs-usb.o
|
|
obj-$(CONFIG_USB_ULPI) += phy-ulpi.o
|
|
obj-$(CONFIG_USB_ULPI_VIEWPORT) += phy-ulpi-viewport.o
|
|
obj-$(CONFIG_KEYSTONE_USB_PHY) += phy-keystone.o
|