diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-02-12 15:11:35 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2011-02-12 15:11:35 +1100 |
commit | 0ea76e92e989ce292f1eeadc0754b3ab9a50df16 (patch) | |
tree | 58a5d6f50479fe10dea06112462fb9ec97bce9f2 /arch/i386/include | |
parent | 4e33467d44620edf224aad03c2c7396fb4918696 (diff) | |
download | u-boot-imx-0ea76e92e989ce292f1eeadc0754b3ab9a50df16.zip u-boot-imx-0ea76e92e989ce292f1eeadc0754b3ab9a50df16.tar.gz u-boot-imx-0ea76e92e989ce292f1eeadc0754b3ab9a50df16.tar.bz2 |
x86: Make cpu init functions weak
Diffstat (limited to 'arch/i386/include')
-rw-r--r-- | arch/i386/include/asm/u-boot-i386.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/include/asm/u-boot-i386.h b/arch/i386/include/asm/u-boot-i386.h index ce097a3..80db52f 100644 --- a/arch/i386/include/asm/u-boot-i386.h +++ b/arch/i386/include/asm/u-boot-i386.h @@ -25,7 +25,9 @@ #define _U_BOOT_I386_H_ 1 /* cpu/.../cpu.c */ +int x86_cpu_init_r(void); int cpu_init_r(void); +int x86_cpu_init_f(void); int cpu_init_f(void); /* cpu/.../timer.c */ |