AMD boards: Fix includes for microcode updates
No ROMCC involved, no need to include .c files in romstage.c. Change-Id: I8a2aaf84276f2931d0a0557ba29e359fa06e2fba Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/4501 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
299c265102
commit
f0a13ceb63
27 changed files with 51 additions and 160 deletions
|
|
@ -2,7 +2,12 @@
|
|||
#define CPU_AMD_MICROCODE_H
|
||||
|
||||
void amd_update_microcode(void *microcode_updates, unsigned processor_rev_id);
|
||||
void update_microcode(u32 processor_rev_id);
|
||||
void model_fxx_update_microcode(unsigned cpu_deviceid);
|
||||
|
||||
#if CONFIG_UPDATE_CPU_MICROCODE
|
||||
void update_microcode(u32 processor_rev_id);
|
||||
#else
|
||||
#define update_microcode(x)
|
||||
#endif
|
||||
#endif /* CPU_AMD_MICROCODE_H */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue