AGESA fam15tn fam16kb: Fix missing FCH function prototypes
Change-Id: I242664032d368794d828fce73a20f75ded45051d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/7151 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
a4c370a3e0
commit
88db14d788
|
@ -40,8 +40,6 @@
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include "hudson.h"
|
#include "hudson.h"
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,6 @@
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include "hudson.h"
|
#include "hudson.h"
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,6 @@
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include "hudson.h"
|
#include "hudson.h"
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,6 @@
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include "hudson.h"
|
#include "hudson.h"
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,6 @@
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/Fch/FchPlatform.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/Fch/FchPlatform.h>
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,6 @@
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/Fch/FchPlatform.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/Fch/FchPlatform.h>
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
||||||
|
|
||||||
VOID FchInitS3LateRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
VOID FchInitS3EarlyRestore (IN FCH_DATA_BLOCK *FchDataPtr);
|
|
||||||
|
|
||||||
#define FILECODE UNASSIGNED_FILE_FILECODE
|
#define FILECODE UNASSIGNED_FILE_FILECODE
|
||||||
|
|
||||||
|
|
|
@ -115,4 +115,14 @@
|
||||||
|
|
||||||
extern BUILD_OPT_CFG UserOptions;
|
extern BUILD_OPT_CFG UserOptions;
|
||||||
|
|
||||||
|
VOID
|
||||||
|
FchInitS3EarlyRestore (
|
||||||
|
IN FCH_DATA_BLOCK *FchDataPtr
|
||||||
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
FchInitS3LateRestore (
|
||||||
|
IN FCH_DATA_BLOCK *FchDataPtr
|
||||||
|
);
|
||||||
|
|
||||||
#endif // _FCH_PLATFORM_H_
|
#endif // _FCH_PLATFORM_H_
|
||||||
|
|
|
@ -47,15 +47,6 @@
|
||||||
extern FCH_TASK_ENTRY *FchInitS3EarlyTaskTable[];
|
extern FCH_TASK_ENTRY *FchInitS3EarlyTaskTable[];
|
||||||
extern FCH_TASK_ENTRY *FchInitS3LateTaskTable[];
|
extern FCH_TASK_ENTRY *FchInitS3LateTaskTable[];
|
||||||
|
|
||||||
VOID
|
|
||||||
FchInitS3EarlyRestore (
|
|
||||||
IN FCH_DATA_BLOCK *FchDataPtr
|
|
||||||
);
|
|
||||||
|
|
||||||
VOID
|
|
||||||
FchInitS3LateRestore (
|
|
||||||
IN FCH_DATA_BLOCK *FchDataPtr
|
|
||||||
);
|
|
||||||
/*----------------------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* FchInitS3EarlyRestore - Config Fch before ACPI S3 resume PCI config device restore
|
* FchInitS3EarlyRestore - Config Fch before ACPI S3 resume PCI config device restore
|
||||||
|
|
|
@ -114,4 +114,14 @@
|
||||||
|
|
||||||
extern BUILD_OPT_CFG UserOptions;
|
extern BUILD_OPT_CFG UserOptions;
|
||||||
|
|
||||||
|
VOID
|
||||||
|
FchInitS3EarlyRestore (
|
||||||
|
IN FCH_DATA_BLOCK *FchDataPtr
|
||||||
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
FchInitS3LateRestore (
|
||||||
|
IN FCH_DATA_BLOCK *FchDataPtr
|
||||||
|
);
|
||||||
|
|
||||||
#endif // _FCH_PLATFORM_H_
|
#endif // _FCH_PLATFORM_H_
|
||||||
|
|
|
@ -47,15 +47,6 @@
|
||||||
extern FCH_TASK_ENTRY *FchInitS3EarlyTaskTable[];
|
extern FCH_TASK_ENTRY *FchInitS3EarlyTaskTable[];
|
||||||
extern FCH_TASK_ENTRY *FchInitS3LateTaskTable[];
|
extern FCH_TASK_ENTRY *FchInitS3LateTaskTable[];
|
||||||
|
|
||||||
VOID
|
|
||||||
FchInitS3EarlyRestore (
|
|
||||||
IN FCH_DATA_BLOCK *FchDataPtr
|
|
||||||
);
|
|
||||||
|
|
||||||
VOID
|
|
||||||
FchInitS3LateRestore (
|
|
||||||
IN FCH_DATA_BLOCK *FchDataPtr
|
|
||||||
);
|
|
||||||
/*----------------------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* FchInitS3EarlyRestore - Config Fch before ACPI S3 resume PCI config device restore
|
* FchInitS3EarlyRestore - Config Fch before ACPI S3 resume PCI config device restore
|
||||||
|
|
Loading…
Reference in New Issue