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/jetway/nf81-t56n-lf | |
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/jetway/nf81-t56n-lf')
-rw-r--r-- | src/mainboard/jetway/nf81-t56n-lf/BiosCallOuts.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/BiosCallOuts.c b/src/mainboard/jetway/nf81-t56n-lf/BiosCallOuts.c index 64ba978ec2..f8a48b8d2d 100644 --- a/src/mainboard/jetway/nf81-t56n-lf/BiosCallOuts.c +++ b/src/mainboard/jetway/nf81-t56n-lf/BiosCallOuts.c @@ -39,13 +39,11 @@ static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigP static AGESA_STATUS board_GnbPcieSlotReset (UINT32 Func, UINTN Data, VOID *ConfigPtr) { AGESA_STATUS Status; - uint32_t FcnData; PCIe_SLOT_RESET_INFO *ResetInfo; uint32_t GpioMmioAddr; uint8_t Data8; - FcnData = Data; ResetInfo = ConfigPtr; Status = AGESA_UNSUPPORTED; GpioMmioAddr = (uintptr_t)acpimmio_gpio_100; |