ufs: Keep Makefile and Kconfig sorted one more time

Sort the Makefile and Kconfig alphabetically again. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Igor Belwon <igor.belwon@mentallysanemainliners.org>
Link: https://patch.msgid.link/20251029201435.215966-1-marek.vasut+renesas@mailbox.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
This commit is contained in:
Marek Vasut 2025-10-29 21:14:10 +01:00 committed by Neil Armstrong
parent 69cc92d686
commit 65c843ebe5
2 changed files with 16 additions and 16 deletions

View File

@ -15,20 +15,6 @@ config CADENCE_UFS
This selects the platform driver for the Cadence UFS host This selects the platform driver for the Cadence UFS host
controller present on present TI's J721e devices. controller present on present TI's J721e devices.
config UFS_MEDIATEK
tristate "MediaTek UFS Host Controller Driver"
depends on UFS && ARCH_MEDIATEK
select PHY_MTK_UFS
help
This selects the MediaTek specific additions to UFSHCD platform driver.
UFS host on Mediatek needs some vendor specific configuration before
accessing the hardware which includes PHY configuration and vendor
specific registers.
Select this if you have UFS controller on MediaTek chipset.
If unsure, say N.
config QCOM_UFS config QCOM_UFS
bool "Qualcomm Host Controller driver for UFS" bool "Qualcomm Host Controller driver for UFS"
depends on UFS && ARCH_SNAPDRAGON depends on UFS && ARCH_SNAPDRAGON
@ -59,6 +45,20 @@ config UFS_AMD_VERSAL2
UFS host on AMD needs some vendor specific configuration before accessing UFS host on AMD needs some vendor specific configuration before accessing
the hardware. the hardware.
config UFS_MEDIATEK
tristate "MediaTek UFS Host Controller Driver"
depends on UFS && ARCH_MEDIATEK
select PHY_MTK_UFS
help
This selects the MediaTek specific additions to UFSHCD platform driver.
UFS host on Mediatek needs some vendor specific configuration before
accessing the hardware which includes PHY configuration and vendor
specific registers.
Select this if you have UFS controller on MediaTek chipset.
If unsure, say N.
config UFS_PCI config UFS_PCI
bool "PCI bus based UFS Controller support" bool "PCI bus based UFS Controller support"
depends on PCI && UFS depends on PCI && UFS

View File

@ -5,11 +5,11 @@
obj-$(CONFIG_UFS) += ufs-uclass.o obj-$(CONFIG_UFS) += ufs-uclass.o
obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o
obj-$(CONFIG_UFS_MEDIATEK) += ufs-mediatek.o
obj-$(CONFIG_QCOM_UFS) += ufs-qcom.o obj-$(CONFIG_QCOM_UFS) += ufs-qcom.o
obj-$(CONFIG_ROCKCHIP_UFS) += ufs-rockchip.o
obj-$(CONFIG_TI_J721E_UFS) += ti-j721e-ufs.o obj-$(CONFIG_TI_J721E_UFS) += ti-j721e-ufs.o
obj-$(CONFIG_UFS_AMD_VERSAL2) += ufs-amd-versal2.o ufshcd-dwc.o obj-$(CONFIG_UFS_AMD_VERSAL2) += ufs-amd-versal2.o ufshcd-dwc.o
obj-$(CONFIG_UFS_MEDIATEK) += ufs-mediatek.o
obj-$(CONFIG_UFS_PCI) += ufs-pci.o obj-$(CONFIG_UFS_PCI) += ufs-pci.o
obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o
obj-$(CONFIG_UFS_RENESAS_GEN5) += ufs-renesas-rcar-gen5.o obj-$(CONFIG_UFS_RENESAS_GEN5) += ufs-renesas-rcar-gen5.o
obj-$(CONFIG_ROCKCHIP_UFS) += ufs-rockchip.o