diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:13:31 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 10:14:51 -0500 |
commit | b861574bd9e7c480ceec47b77a59ed5a52b57937 (patch) | |
tree | 448a4e93592eb182cf684ae7f7724c217d686488 /drivers/serial | |
parent | f410d0ac8a90d16870d33cc7944e98445f7e168d (diff) | |
download | u-boot-b861574bd9e7c480ceec47b77a59ed5a52b57937.tar.gz u-boot-b861574bd9e7c480ceec47b77a59ed5a52b57937.tar.bz2 u-boot-b861574bd9e7c480ceec47b77a59ed5a52b57937.zip |
global: Migrate CONFIG_PL01x_PORTS to CFG
Perform a simple rename of CONFIG_PL01x_PORTS to CFG_PL01x_PORTS
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/serial_pl01x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_pl01x.c b/drivers/serial/serial_pl01x.c index dd2881931d..7449e9b904 100644 --- a/drivers/serial/serial_pl01x.c +++ b/drivers/serial/serial_pl01x.c @@ -29,7 +29,7 @@ DECLARE_GLOBAL_DATA_PTR; #ifndef CONFIG_DM_SERIAL -static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS; +static volatile unsigned char *const port[] = CFG_PL01x_PORTS; static enum pl01x_type pl01x_type __section(".data"); static struct pl01x_regs *base_regs __section(".data"); #define NUM_PORTS (sizeof(port)/sizeof(port[0])) |