aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/agesa/BiosCallOuts.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2015-10-30 23:38:40 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2015-11-06 20:59:52 +0100
commit82860f854901d79f1392226364345fdc3fd0c03d (patch)
tree585a8b8fa7b173889f7c48b262750dd191906aa1 /src/northbridge/amd/agesa/BiosCallOuts.h
parent625b944e7584f4b559e2376dce0c35d54fb68aec (diff)
AGESA BiosCallouts: Remove cast
This cast only hides errors in matching the API properly. Change-Id: Ic396dfb572a50ac5ce5c1c83424e1f17f15bad1d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/12270 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/agesa/BiosCallOuts.h')
-rw-r--r--src/northbridge/amd/agesa/BiosCallOuts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/agesa/BiosCallOuts.h b/src/northbridge/amd/agesa/BiosCallOuts.h
index 3a1c7c5fc1..238557823e 100644
--- a/src/northbridge/amd/agesa/BiosCallOuts.h
+++ b/src/northbridge/amd/agesa/BiosCallOuts.h
@@ -35,7 +35,7 @@ AGESA_STATUS GetBiosCallout (UINT32 Func, UINTN Data, VOID *ConfigPtr);
typedef struct {
UINT32 CalloutName;
- AGESA_STATUS (*CalloutPtr) (UINT32 Func, UINTN Data, VOID* ConfigPtr);
+ CALLOUT_ENTRY CalloutPtr;
} BIOS_CALLOUT_STRUCT;
extern const BIOS_CALLOUT_STRUCT BiosCallouts[];