diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-16 12:27:36 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-05-28 04:17:47 +0000 |
commit | 8d3640d22610eeb9a21c803d75c698e681a1dc62 (patch) | |
tree | d544c971843f5b5c60dfe6efbdf456d6d701494c /src/mainboard/asus/a88xm-e | |
parent | 74782cb2f4601f5b67c6b169a7ab9b1d0778c638 (diff) |
vendorcode/amd/agesa/f15tn: Fix all improper use of .data
AGESA has a lot of code in the .data section which is for initialized
data, that in fact should be .rodata. This adds the 'CONST' keyword
everywhere it is needed.
TEST: See in the .elf file (e.g. using readelf) that there is nothing in
.data section.
Change-Id: I9593c24f764319f66a64715d91175f64edf10608
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64386
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/asus/a88xm-e')
-rw-r--r-- | src/mainboard/asus/a88xm-e/buildOpts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/asus/a88xm-e/buildOpts.c b/src/mainboard/asus/a88xm-e/buildOpts.c index 25e7d3aed2..363e31f96d 100644 --- a/src/mainboard/asus/a88xm-e/buildOpts.c +++ b/src/mainboard/asus/a88xm-e/buildOpts.c @@ -54,7 +54,7 @@ #define BLDCFG_FCH_GPP_PORT1_PRESENT TRUE #define BLDCFG_FCH_GPP_PORT2_PRESENT TRUE -GPIO_CONTROL a88xm_e_gpio[] = { +CONST GPIO_CONTROL a88xm_e_gpio[] = { {-1} }; #define BLDCFG_FCH_GPIO_CONTROL_LIST (a88xm_e_gpio) |