diff options
author | Patrick Delaunay | 2021-11-15 16:32:19 +0100 |
---|---|---|
committer | Patrice Chotard | 2021-11-30 16:43:28 +0100 |
commit | fded97adcedb4c77927d06aad7a7d816059eeeab (patch) | |
tree | b9f0ee7760e824c3f14897dc9257fbc44aab47e0 /board/raspberrypi/rpi/rpi.c | |
parent | 4ca979e3148d8ecffaad6212871d645162a13ca0 (diff) |
common: rename functions lcd_dt_simplefb to fdt_simplefb
Rename the function named lcd_dt_simplefb* to fdt_simplefb* to be aligned
with the associated file name fdt_simplefb.h/fdt_simplefb.c
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'board/raspberrypi/rpi/rpi.c')
-rw-r--r-- | board/raspberrypi/rpi/rpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 55afaa54d9f..cd7d6df2a5c 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -505,7 +505,7 @@ int ft_board_setup(void *blob, struct bd_info *bd) node = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer"); if (node < 0) - lcd_dt_simplefb_add_node(blob); + fdt_simplefb_add_node(blob); #ifdef CONFIG_EFI_LOADER /* Reserve the spin table */ |