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 @@
* GNU General Public License for more details.
*/
#include <compiler.h>
#include <program_loading.h>
/* For each segment of a program loaded this function is called*/
@ -23,13 +24,13 @@ void prog_segment_loaded(uintptr_t start, size_t size, int flags)
arch_segment_loaded(start, size, flags);
}
void __attribute__((weak)) platform_segment_loaded(uintptr_t start,
void __weak platform_segment_loaded(uintptr_t start,
size_t size, int flags)
{
/* do nothing */
}
void __attribute__((weak)) arch_segment_loaded(uintptr_t start, size_t size,
void __weak arch_segment_loaded(uintptr_t start, size_t size,
int flags)
{
/* do nothing */
@ -41,7 +42,7 @@ void prog_run(struct prog *prog)
arch_prog_run(prog);
}
void __attribute__((weak)) platform_prog_run(struct prog *prog)
void __weak platform_prog_run(struct prog *prog)
{
/* do nothing */
}