diff options
author | Tom Rini | 2022-12-04 10:03:51 -0500 |
---|---|---|
committer | Tom Rini | 2022-12-23 10:09:42 -0500 |
commit | 2aac334a9b57df2653da3a5d6169c473c760a14d (patch) | |
tree | 1ae7d4f93f88c5f8a81a7fcbac4fc2ec18e42f53 | |
parent | 0613c36a7a5973d58a50b764ee647099e80cc97d (diff) |
global: Migrate CONFIG_FB_ADDR to CFG
Perform a simple rename of CONFIG_FB_ADDR to CFG_FB_ADDR
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/video/nexell_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/nexell_display.c b/drivers/video/nexell_display.c index 5595796a678..af2698ffca8 100644 --- a/drivers/video/nexell_display.c +++ b/drivers/video/nexell_display.c @@ -560,7 +560,7 @@ static int nx_display_bind(struct udevice *dev) /* Datasheet S5p4418: * Resolution up to 2048 x 1280, up to 12 Bit per color (HDMI) * Actual (max.) size is 0x1000000 because in U-Boot nanopi2-2016.01 - * "#define CONFIG_FB_ADDR 0x77000000" and next address is + * "#define CFG_FB_ADDR 0x77000000" and next address is * "#define BMP_LOAD_ADDR 0x78000000" */ plat->size = 0x1000000; |