aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_apl1/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/siemens/mc_apl1/gpio.c')
-rw-r--r--src/mainboard/siemens/mc_apl1/gpio.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainboard/siemens/mc_apl1/gpio.c b/src/mainboard/siemens/mc_apl1/gpio.c
index b872b8d832..636d35682b 100644
--- a/src/mainboard/siemens/mc_apl1/gpio.c
+++ b/src/mainboard/siemens/mc_apl1/gpio.c
@@ -16,6 +16,7 @@
#include <soc/gpio.h>
#include <commonlib/helpers.h>
+#include <compiler.h>
#include "brd_gpio.h"
/*
@@ -363,7 +364,7 @@ static const struct pad_config gpio_table[] = {
PAD_CFG_NF(SVID0_CLK, UP_20K, DEEP, NF1), /* SVID0_CLK */
};
-const struct pad_config *__attribute__((weak)) brd_gpio_table(size_t *num)
+const struct pad_config *__weak brd_gpio_table(size_t *num)
{
*num = ARRAY_SIZE(gpio_table);
return gpio_table;
@@ -406,7 +407,7 @@ static const struct pad_config early_gpio_table[] = {
PAD_CFG_NF(LPC_FRAMEB, UP_20K, DEEP, NF1), /* LPC_FRAME_N */
};
-const struct pad_config *__attribute__((weak))
+const struct pad_config *__weak
brd_early_gpio_table(size_t *num)
{
*num = ARRAY_SIZE(early_gpio_table);