diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-03-23 22:38:04 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-25 20:06:23 +0000 |
commit | f128adda88350a4c394978b4409fda3565d9422e (patch) | |
tree | 30b1255530b579e2422f48eb0992458686d51e15 /src/mainboard/asrock | |
parent | ee1641f066b68eb6dd008728ae8f791eba795dcd (diff) |
mb/*/BiosCallOuts.c: Fix unused variable
This fixes clang builds.
Change-Id: Ie09fae149a9530ad45f0cd5945e73f46484ef385
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63055
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/asrock')
-rw-r--r-- | src/mainboard/asrock/e350m1/BiosCallOuts.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/asrock/e350m1/BiosCallOuts.c b/src/mainboard/asrock/e350m1/BiosCallOuts.c index 391b308941..ac42bd4f45 100644 --- a/src/mainboard/asrock/e350m1/BiosCallOuts.c +++ b/src/mainboard/asrock/e350m1/BiosCallOuts.c @@ -25,13 +25,11 @@ const int BiosCalloutsLen = ARRAY_SIZE(BiosCallouts); static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigPtr) { AGESA_STATUS Status; - UINTN FcnData; MEM_DATA_STRUCT *MemData; UINT32 GpioMmioAddr; UINT8 Data8; UINT8 TempData8; - FcnData = Data; MemData = ConfigPtr; Status = AGESA_SUCCESS; |