]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
drivers: phy: phy-mtk-ufs: use tab to indent defines
authorJulien Stephan <jstephan@baylibre.com>
Wed, 18 Mar 2026 16:50:54 +0000 (17:50 +0100)
committerDavid Lechner <dlechner@baylibre.com>
Fri, 17 Apr 2026 22:05:54 +0000 (17:05 -0500)
Use tabs instead of spaces to indent defines

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Julien Stephan <jstephan@baylibre.com>
Link: https://patch.msgid.link/20260318-mt8195-add-ufs-support-v2-2-f18eeeeb0e72@baylibre.com
Signed-off-by: David Lechner <dlechner@baylibre.com>
drivers/phy/phy-mtk-ufs.c

index 14a90cf2064e96807ff742074c22ffac241d011b..321151172d9cbb844a8c3f7d6ceb4958b39b0711 100644 (file)
 #include <mapmem.h>
 
 /* mphy register and offsets */
-#define MP_GLB_DIG_8C               0x008C
-#define FRC_PLL_ISO_EN              BIT(8)
-#define PLL_ISO_EN                  BIT(9)
-#define FRC_FRC_PWR_ON              BIT(10)
-#define PLL_PWR_ON                  BIT(11)
-
-#define MP_LN_DIG_RX_9C             0xA09C
-#define FSM_DIFZ_FRC                BIT(18)
-
-#define MP_LN_DIG_RX_AC             0xA0AC
-#define FRC_RX_SQ_EN                BIT(0)
-#define RX_SQ_EN                    BIT(1)
-
-#define MP_LN_RX_44                 0xB044
-#define FRC_CDR_PWR_ON              BIT(17)
-#define CDR_PWR_ON                  BIT(18)
-#define FRC_CDR_ISO_EN              BIT(19)
-#define CDR_ISO_EN                  BIT(20)
-
-#define UFSPHY_CLKS_CNT    2
+#define MP_GLB_DIG_8C          0x008C
+#define FRC_PLL_ISO_EN         BIT(8)
+#define PLL_ISO_EN             BIT(9)
+#define FRC_FRC_PWR_ON         BIT(10)
+#define PLL_PWR_ON             BIT(11)
+
+#define MP_LN_DIG_RX_9C                0xA09C
+#define FSM_DIFZ_FRC           BIT(18)
+
+#define MP_LN_DIG_RX_AC                0xA0AC
+#define FRC_RX_SQ_EN           BIT(0)
+#define RX_SQ_EN               BIT(1)
+
+#define MP_LN_RX_44            0xB044
+#define FRC_CDR_PWR_ON         BIT(17)
+#define CDR_PWR_ON             BIT(18)
+#define FRC_CDR_ISO_EN         BIT(19)
+#define CDR_ISO_EN             BIT(20)
 
 struct mtk_ufs_phy {
        struct udevice *dev;