meson64: Fix missing CFG_SYS_BAUDRATE_TABLE migration
authorTom Rini <trini@konsulko.com>
Fri, 2 Dec 2022 21:42:25 +0000 (16:42 -0500)
committerTom Rini <trini@konsulko.com>
Thu, 22 Dec 2022 15:31:48 +0000 (10:31 -0500)
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>
include/configs/meson64.h

index 6331b76..a22f7a8 100644 (file)
@@ -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 }