mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
0d9edd2dfb
This is now handled by generic U-Boot code so we do not need an x86 version. It is no-longer called, so remove it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
17 lines
283 B
C
17 lines
283 B
C
/*
|
|
* (C) Copyright 2011
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _RELOCATE_H_
|
|
#define _RELOCATE_H_
|
|
|
|
#include <common.h>
|
|
|
|
int copy_uboot_to_ram(void);
|
|
int clear_bss(void);
|
|
int do_elf_reloc_fixups(void);
|
|
|
|
#endif /* !_RELOCATE_H_ */
|