summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-12-02 16:42:25 -0500
committerTom Rini <trini@konsulko.com>2022-12-22 10:31:48 -0500
commitb95de034c51bfeabde26e8ca6a11f25e91f2405b (patch)
treeb1ec23164e6e8ddf7e000e52e5428b66be8709a6 /include
parentf3b516852e0ba16f491266218430264789c71f3a (diff)
meson64: Fix missing CFG_SYS_BAUDRATE_TABLE migration
CONFIG_SYS_BAUDRATE_TABLE has already been migrated to CFG_SYS but this instance was missed, correct. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/meson64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/meson64.h b/include/configs/meson64.h
index 6331b7615d..a22f7a81b0 100644
--- a/include/configs/meson64.h
+++ b/include/configs/meson64.h
@@ -18,7 +18,7 @@
/* Serial drivers */
/* The following table includes the supported baudrates */
-#define CONFIG_SYS_BAUDRATE_TABLE \
+#define CFG_SYS_BAUDRATE_TABLE \
{300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, \
230400, 250000, 460800, 500000, 1000000, 2000000, 4000000, \
8000000 }