]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
clk: mediatek: mt7986: fix typo for infra_i2c0_ck
authorChristian Marangi <ansuelsmth@gmail.com>
Sat, 3 Aug 2024 08:40:40 +0000 (10:40 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 19 Aug 2024 22:14:43 +0000 (16:14 -0600)
Fix a typo for infra_i2c0_ck where 0 was misspelled as O.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
drivers/clk/mediatek/clk-mt7986.c
include/dt-bindings/clock/mt7986-clk.h

index 5f07de237560e217fbf5b67d6045298a67277170..303d959d7507d481021ae6fc0a69857e7edc84a9 100644 (file)
@@ -452,7 +452,7 @@ static const struct mtk_gate infracfg_ao_gates[] = {
        GATE_INFRA0_TOP(CK_INFRA_TRNG_CK, "infra_trng", CK_TOP_SYSAXI_SEL, 26),
        /* INFRA1 */
        GATE_INFRA1_TOP(CK_INFRA_THERM_CK, "infra_therm", CK_TOP_F26M_SEL, 0),
-       GATE_INFRA1_TOP(CK_INFRA_I2CO_CK, "infra_i2co", CK_TOP_I2C_SEL, 1),
+       GATE_INFRA1_TOP(CK_INFRA_I2C0_CK, "infra_i2co", CK_TOP_I2C_SEL, 1),
        GATE_INFRA1_INFRA(CK_INFRA_UART0_CK, "infra_uart0", CK_INFRA_UART0_SEL, 2),
        GATE_INFRA1_INFRA(CK_INFRA_UART1_CK, "infra_uart1", CK_INFRA_UART1_SEL, 3),
        GATE_INFRA1_INFRA(CK_INFRA_UART2_CK, "infra_uart2", CK_INFRA_UART2_SEL, 4),
index 16faca5fef8e87fc7c2d0c9dd613eb417c131885..a48d57512d16ff3ad9a6c6a26ed58beac7cf40d3 100644 (file)
 #define CK_INFRA_SEJ_CK                        15
 #define CK_INFRA_SEJ_13M_CK            16
 #define CK_INFRA_THERM_CK              17
-#define CK_INFRA_I2CO_CK               18
+#define CK_INFRA_I2C0_CK               18
 #define CK_INFRA_TRNG_CK               19
 #define CK_INFRA_UART0_CK              20
 #define CK_INFRA_UART1_CK              21