diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-09-07 19:40:56 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-09-09 04:45:33 +0000 |
commit | 2dc5c6e2cc303b18b2c1434c0482ba68b6c4dc29 (patch) | |
tree | ac9f489a9b699d379bb507ede4402b6acae5c0b0 /src/soc/amd/common/block/apob | |
parent | 25a7af18a5e789a7930015ab08d72ea62f5be71a (diff) |
soc/amd/common: Remove __attribute__(())
Change-Id: I2866dcdd6900c98310b4b3736b40ebe4eaa77ea2
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77719
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/apob')
-rw-r--r-- | src/soc/amd/common/block/apob/apob_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/apob/apob_cache.c b/src/soc/amd/common/block/apob/apob_cache.c index 06dc5977c7..713826a297 100644 --- a/src/soc/amd/common/block/apob/apob_cache.c +++ b/src/soc/amd/common/block/apob/apob_cache.c @@ -113,7 +113,7 @@ static enum cb_err get_nv_rdev_rw(struct region_device *r) } static struct apob_thread_context { - uint8_t buffer[DEFAULT_MRC_CACHE_SIZE] __attribute__((aligned(64))); + uint8_t buffer[DEFAULT_MRC_CACHE_SIZE] __aligned(64); struct thread_handle handle; struct region_device apob_rdev; } global_apob_thread; |