diff options
| author | Ovidiu Panait <[email protected]> | 2021-11-30 18:33:49 +0200 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2022-01-05 10:22:02 +0100 |
| commit | edf0f9b15eeaa6ca3d7bf69fa3163dcfa812d168 (patch) | |
| tree | 367ef2faa2c22eef863aa2c686981ce5040a16b8 /arch/microblaze/include/asm/processor.h | |
| parent | 380bd08370b363a4bfe76e70fbbaead10541445b (diff) | |
microblaze: u-boot.lds: replace __end symbol with _end
board_fdt_blob_setup() uses the _end symbol to find the dtb in the non-spl
case. In order to allow microblaze builds to compile successfully with
CONFIG_OF_SEPARATE, the _end symbol must be defined. Align microblaze with
the other architectures and use _end symbol rather than __end to mark the
end of the u-boot binary.
Signed-off-by: Ovidiu Panait <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
Diffstat (limited to 'arch/microblaze/include/asm/processor.h')
| -rw-r--r-- | arch/microblaze/include/asm/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/include/asm/processor.h b/arch/microblaze/include/asm/processor.h index 16e0d0ef0a9..958018c1909 100644 --- a/arch/microblaze/include/asm/processor.h +++ b/arch/microblaze/include/asm/processor.h @@ -8,7 +8,7 @@ /* References to section boundaries */ -extern char __end[]; +extern char _end[]; extern char __text_start[]; /* Microblaze board initialization function */ |
