]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ufs: core: Keep Makefile and Kconfig list sorted
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Tue, 28 Oct 2025 14:22:21 +0000 (15:22 +0100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Tue, 28 Oct 2025 16:32:15 +0000 (17:32 +0100)
Sort the Makefile and Kconfig lists alphabetically. No functional change.

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Link: https://patch.msgid.link/20251028142335.18125-1-marek.vasut+renesas@mailbox.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
drivers/ufs/Kconfig
drivers/ufs/Makefile

index b030a972b98bb84489301376c3a7bf099adf8d8b..6b980bce1e934464857bc2c126342fdde7a8e2db 100644 (file)
@@ -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
index bbee66caa8a407f0ce85cc981395534789069cda..04892d75fe6fc6a222c951e4727e5568b00757c2 100644 (file)
@@ -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