diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-04-20 10:21:39 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-26 15:04:08 +0000 |
commit | fcbbb911162aa4dea1fc7fcc8794b22f86579fe8 (patch) | |
tree | e903cf984495a2e79be392dfb853f7f9161e867f /src/include | |
parent | 1c3faabf2472c5eee9ceabc233896e7c28e0d863 (diff) | |
download | coreboot-fcbbb911162aa4dea1fc7fcc8794b22f86579fe8.tar.xz |
Remove MAYBE_STATIC_BSS and ENV_STAGE_HAS_BSS_SECTION
After removal of CAR_MIGRATION there are no more reasons
to carry around ENV_STAGE_HAS_BSS_SECTION=n case.
Replace 'MAYBE_STATIC_BSS' with 'static' and remove explicit
zero-initializers.
Change-Id: I14dd9f52da5b06f0116bd97496cf794e5e71bc37
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40535
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/rules.h | 3 | ||||
-rw-r--r-- | src/include/stddef.h | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/include/rules.h b/src/include/rules.h index 6af25a9577..614f37ad52 100644 --- a/src/include/rules.h +++ b/src/include/rules.h @@ -252,12 +252,9 @@ #define ENV_CACHE_AS_RAM (ENV_ROMSTAGE_OR_BEFORE && !CONFIG(RESET_VECTOR_IN_RAM)) /* No .data sections with execute-in-place from ROM. */ #define ENV_STAGE_HAS_DATA_SECTION !ENV_CACHE_AS_RAM -/* No .bss sections for stage with CAR teardown. */ -#define ENV_STAGE_HAS_BSS_SECTION 1 #else /* Both .data and .bss, sometimes SRAM not DRAM. */ #define ENV_STAGE_HAS_DATA_SECTION 1 -#define ENV_STAGE_HAS_BSS_SECTION 1 #define ENV_CACHE_AS_RAM 0 #endif diff --git a/src/include/stddef.h b/src/include/stddef.h index e3183096a0..b668b1aeb6 100644 --- a/src/include/stddef.h +++ b/src/include/stddef.h @@ -41,12 +41,6 @@ typedef unsigned int wint_t; #define MAYBE_STATIC_NONZERO #endif -#if ENV_STAGE_HAS_BSS_SECTION -#define MAYBE_STATIC_BSS static -#else -#define MAYBE_STATIC_BSS -#endif - /* Provide a pointer to address 0 that thwarts any "accessing this is * undefined behaviour and do whatever" trickery in compilers. * Use when you _really_ need to read32(zeroptr) (ie. read address 0). |