mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
edf0f9b15e
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 <ovidiu.panait@windriver.com> Link: https://lore.kernel.org/r/20211130163358.2531677-2-ovidiu.panait@windriver.com Signed-off-by: Michal Simek <michal.simek@xilinx.com>
20 lines
444 B
C
20 lines
444 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2011 Michal Simek <monstr@monstr.eu>
|
|
*/
|
|
|
|
#ifndef __ASM_MICROBLAZE_PROCESSOR_H
|
|
#define __ASM_MICROBLAZE_PROCESSOR_H
|
|
|
|
/* References to section boundaries */
|
|
|
|
extern char _end[];
|
|
extern char __text_start[];
|
|
|
|
/* Microblaze board initialization function */
|
|
void board_init(void);
|
|
|
|
/* Watchdog functions */
|
|
extern void hw_watchdog_disable(void);
|
|
|
|
#endif /* __ASM_MICROBLAZE_PROCESSOR_H */
|