mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
c17ca6b5cd
Now that we have generic routine to calculate relocation address, remove the x86 specific one which is now only used by coreboot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
15 lines
272 B
C
15 lines
272 B
C
/*
|
|
* (C) Copyright 2011
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _INIT_HELPERS_H_
|
|
#define _INIT_HELPERS_H_
|
|
|
|
int init_cache_f_r(void);
|
|
int init_bd_struct_r(void);
|
|
int init_func_spi(void);
|
|
|
|
#endif /* !_INIT_HELPERS_H_ */
|