mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
common: Move embedded fdt location to fdtdec.h
These declarations are only used in fdtdec.c so move them to its header file. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7c810a330a
commit
2ebebb942d
2 changed files with 3 additions and 3 deletions
|
@ -63,9 +63,6 @@ void hang (void) __attribute__ ((noreturn));
|
|||
|
||||
#include <display_options.h>
|
||||
|
||||
extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
|
||||
extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
|
||||
|
||||
/**
|
||||
* arch_fixup_fdt() - Write arch-specific information to fdt
|
||||
*
|
||||
|
|
|
@ -111,6 +111,9 @@ struct fdt_pci_addr {
|
|||
u32 phys_lo;
|
||||
};
|
||||
|
||||
extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
|
||||
extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
|
||||
|
||||
/**
|
||||
* Compute the size of a resource.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue