]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ufs: rockchip: Rename CONFIG_ROCKCHIP_UFS to CONFIG_UFS_ROCKCHIP
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 30 Oct 2025 22:35:44 +0000 (23:35 +0100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Tue, 25 Nov 2025 15:38:22 +0000 (16:38 +0100)
Align the Kconfig option with the rest of the subsystem, use
CONFIG_UFS_<vendor> format for the Kconfig option.

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

index 288d3de824cb30d4d559dbad6326d2197c6865b7..e9e570cddc7caf1a90af00c4c2f48376ec43c0ff 100644 (file)
@@ -8,15 +8,6 @@ config UFS
          This selects support for Universal Flash Subsystem (UFS).
          Say Y here if you want UFS Support.
 
-config ROCKCHIP_UFS
-       bool "Rockchip specific hooks to UFS controller platform driver"
-       depends on UFS
-       help
-         This selects the Rockchip specific additions to UFSHCD platform driver.
-
-         Select this if you have UFS controller on Rockchip chipset.
-         If unsure, say N.
-
 config TI_J721E_UFS
        bool "Glue Layer driver for UFS on TI J721E devices"
        help
@@ -88,4 +79,13 @@ config UFS_RENESAS_GEN5
          platform driver. UFS host on Renesas needs some vendor
          specific configuration before accessing the hardware.
 
+config UFS_ROCKCHIP
+       bool "Rockchip specific hooks to UFS controller platform driver"
+       depends on UFS
+       help
+         This selects the Rockchip specific additions to UFSHCD platform driver.
+
+         Select this if you have UFS controller on Rockchip chipset.
+         If unsure, say N.
+
 endmenu
index 18ed250d059908fc5cff7ab2b145362c68b763a6..0358075435ff3914588613458be6a93068ab42d1 100644 (file)
@@ -4,7 +4,6 @@
 #
 
 obj-$(CONFIG_UFS) += ufs-uclass.o
-obj-$(CONFIG_ROCKCHIP_UFS) += ufs-rockchip.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_CADENCE) += cdns-platform.o
@@ -13,3 +12,4 @@ obj-$(CONFIG_UFS_PCI) += ufs-pci.o
 obj-$(CONFIG_UFS_QCOM) += ufs-qcom.o
 obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o
 obj-$(CONFIG_UFS_RENESAS_GEN5) += ufs-renesas-rcar-gen5.o
+obj-$(CONFIG_UFS_ROCKCHIP) += ufs-rockchip.o