From: Marek Vasut Date: Tue, 28 Oct 2025 14:22:21 +0000 (+0100) Subject: ufs: core: Keep Makefile and Kconfig list sorted X-Git-Tag: v2026.01-rc2~56^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b37b6001759c2727568255de1169c942b9aa185;p=thirdparty%2Fu-boot.git ufs: core: Keep Makefile and Kconfig list sorted Sort the Makefile and Kconfig lists alphabetically. No functional change. Reviewed-by: Neil Armstrong Signed-off-by: Marek Vasut Link: https://patch.msgid.link/20251028142335.18125-1-marek.vasut+renesas@mailbox.org Signed-off-by: Neil Armstrong --- diff --git a/drivers/ufs/Kconfig b/drivers/ufs/Kconfig index b030a972b98..6b980bce1e9 100644 --- a/drivers/ufs/Kconfig +++ b/drivers/ufs/Kconfig @@ -29,17 +29,6 @@ config UFS_MEDIATEK If unsure, say N. -config UFS_PCI - bool "PCI bus based UFS Controller support" - depends on PCI && UFS - help - This selects the PCI UFS Host Controller Interface. Select this if - you have UFS Host Controller with PCI Interface. - - If you have a controller with this interface, say Y here. - - If unsure, say N. - config QCOM_UFS bool "Qualcomm Host Controller driver for UFS" depends on UFS && ARCH_SNAPDRAGON @@ -62,6 +51,25 @@ config TI_J721E_UFS This selects the glue layer driver for Cadence controller present on TI's J721E devices. +config UFS_AMD_VERSAL2 + bool "AMD Versal Gen 2 UFS controller platform driver" + depends on UFS && ZYNQMP_FIRMWARE + help + This selects the AMD specific additions to UFSHCD platform driver. + UFS host on AMD needs some vendor specific configuration before accessing + the hardware. + +config UFS_PCI + bool "PCI bus based UFS Controller support" + depends on PCI && UFS + help + This selects the PCI UFS Host Controller Interface. Select this if + you have UFS Host Controller with PCI Interface. + + If you have a controller with this interface, say Y here. + + If unsure, say N. + config UFS_RENESAS bool "Renesas specific hooks to UFS controller platform driver" depends on UFS @@ -71,12 +79,4 @@ config UFS_RENESAS UFS host on Renesas needs some vendor specific configuration before accessing the hardware. -config UFS_AMD_VERSAL2 - bool "AMD Versal Gen 2 UFS controller platform driver" - depends on UFS && ZYNQMP_FIRMWARE - help - This selects the AMD specific additions to UFSHCD platform driver. - UFS host on AMD needs some vendor specific configuration before accessing - the hardware. - endmenu diff --git a/drivers/ufs/Makefile b/drivers/ufs/Makefile index bbee66caa8a..04892d75fe6 100644 --- a/drivers/ufs/Makefile +++ b/drivers/ufs/Makefile @@ -8,7 +8,7 @@ obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o obj-$(CONFIG_UFS_MEDIATEK) += ufs-mediatek.o obj-$(CONFIG_QCOM_UFS) += ufs-qcom.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_PCI) += ufs-pci.o obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o obj-$(CONFIG_ROCKCHIP_UFS) += ufs-rockchip.o -obj-$(CONFIG_UFS_AMD_VERSAL2) += ufs-amd-versal2.o ufshcd-dwc.o