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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user