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:
Aaron Durbin
2018-04-21 14:45:32 -06:00
parent 38fd6685e9
commit 6403167d29
137 changed files with 408 additions and 277 deletions

View File

@ -14,6 +14,7 @@
*/
#include <arch/cache.h>
#include <compiler.h>
#include <console/console.h>
#include <halt.h>
#include <reset.h>
@ -27,10 +28,10 @@ __attribute__((noreturn)) static void __hard_reset(void) {
}
/* Not all platforms implement all reset types. Fall back to hard_reset. */
__attribute__((weak)) void do_global_reset(void) { __hard_reset(); }
__attribute__((weak)) void do_soft_reset(void) { __hard_reset(); }
__weak void do_global_reset(void) { __hard_reset(); }
__weak void do_soft_reset(void) { __hard_reset(); }
__attribute__((weak)) void soc_reset_prepare(enum reset_type rt) { /* no-op */ }
__weak void soc_reset_prepare(enum reset_type rt) { /* no-op */ }
void global_reset(void)
{