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:
@ -21,6 +21,7 @@
|
||||
#include <adainit.h>
|
||||
#include <arch/exception.h>
|
||||
#include <bootstate.h>
|
||||
#include <compiler.h>
|
||||
#include <console/console.h>
|
||||
#include <console/post_codes.h>
|
||||
#include <cbmem.h>
|
||||
@ -115,7 +116,7 @@ static struct boot_state boot_states[] = {
|
||||
BS_INIT_ENTRY(BS_PAYLOAD_BOOT, bs_payload_boot),
|
||||
};
|
||||
|
||||
void __attribute__((weak)) arch_bootstate_coreboot_exit(void) { }
|
||||
void __weak arch_bootstate_coreboot_exit(void) { }
|
||||
|
||||
static boot_state_t bs_pre_device(void *arg)
|
||||
{
|
||||
|
Reference in New Issue
Block a user