diff options
author | Simon Glass <sjg@chromium.org> | 2024-08-21 10:19:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-26 14:05:38 -0600 |
commit | 30e331e9cb7c14400dae385ed7ceab56eaa1e005 (patch) | |
tree | 2a82abe74c3f49893be44ced027f9294cde54381 | |
parent | 32c24a1705a1e9601bd33b60fe9a6079d3211912 (diff) |
global_data: Drop fb_base
This value mirrors information recorded by driver model video drivers,
so can be removed to save space. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/asm-generic/global_data.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 79d2aa4c6f5..a06b508bebb 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -64,12 +64,6 @@ struct global_data { * @mem_clk: memory clock rate in Hz */ unsigned long mem_clk; -#if CONFIG_IS_ENABLED(VIDEO) - /** - * @fb_base: base address of frame buffer memory - */ - unsigned long fb_base; -#endif #if defined(CONFIG_POST) /** * @post_log_word: active POST tests |