]> git.baikalelectronics.ru Git - uboot.git/commitdiff
global: Migrate CONFIG_TESTPIN_MASK to CFG
authorTom Rini <trini@konsulko.com>
Sun, 4 Dec 2022 15:13:59 +0000 (10:13 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 23 Dec 2022 15:15:12 +0000 (10:15 -0500)
Perform a simple rename of CONFIG_TESTPIN_MASK to CFG_TESTPIN_MASK

Signed-off-by: Tom Rini <trini@konsulko.com>
board/keymile/km83xx/km83xx.c
include/configs/kmcoge5ne.h

index 88afc76bbbf6a70d9ae9432e87485242451fb445..73e3709bbba2eb5029879d7d34c89e13f732caf7 100644 (file)
@@ -217,7 +217,7 @@ int post_hotkeys_pressed(void)
        struct km_bec_fpga *base =
                (struct km_bec_fpga *)CFG_SYS_KMBEC_FPGA_BASE;
        int testpin_reg = in_8(&base->CONFIG_TESTPIN_REG);
-       testpin = (testpin_reg & CONFIG_TESTPIN_MASK) != 0;
+       testpin = (testpin_reg & CFG_TESTPIN_MASK) != 0;
        debug("post_hotkeys_pressed: %d\n", !testpin);
        return testpin;
 }
index e0f94aead794b0beef1a88cb15fc663f5ffadb0d..d9c2f4fc4f9ed98a52f4e9804dc82afb6e1ca7e0 100644 (file)
@@ -31,6 +31,6 @@
 #define CFG_POST_EXTERNAL_WORD_FUNCS /* use own functions, not generic */
 #define CPM_POST_WORD_ADDR  CONFIG_SYS_MEMTEST_END
 #define CONFIG_TESTPIN_REG  gprt3      /* for kmcoge5ne */
-#define CONFIG_TESTPIN_MASK 0x20       /* for kmcoge5ne */
+#define CFG_TESTPIN_MASK 0x20  /* for kmcoge5ne */
 
 #endif /* CONFIG */