compiler.h: add __weak macro
Instead of writing out '__attribute__((weak))' use a shorter form. Change-Id: If418a1d55052780077febd2d8f2089021f414b91 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/25767 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Justin TerAvest <teravest@chromium.org>
This commit is contained in:
parent
38fd6685e9
commit
6403167d29
137 changed files with 408 additions and 277 deletions
|
|
@ -24,6 +24,7 @@
|
|||
#else
|
||||
#include <arch/cbfs.h>
|
||||
#endif
|
||||
#include <compiler.h>
|
||||
#include <cpu/cpu.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <cpu/intel/microcode.h>
|
||||
|
|
@ -209,7 +210,7 @@ void intel_update_microcode_from_cbfs(void)
|
|||
}
|
||||
|
||||
#if ENV_RAMSTAGE
|
||||
__attribute__((weak)) int soc_skip_ucode_update(u32 currrent_patch_id,
|
||||
__weak int soc_skip_ucode_update(u32 currrent_patch_id,
|
||||
u32 new_patch_id)
|
||||
{
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue