baytrail: Fix some minor errors in FSP
- Duplicate declaration of GetFspReservedMemoryFromGuid - Corrupt line that was only compiled for a southbridge that no board in coreboot currently uses. (thanks for Mike Hibbett <mhibbett@ircona.com> for pointing this out) Change-Id: I847e807272acbaa93c87a89c0d2f94829c9121e6 Signed-off-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/5798 Tested-by: build bot (Jenkins) Reviewed-by: Idwer Vollering <vidwer@gmail.com>
This commit is contained in:
parent
61113de923
commit
03b00e9675
|
@ -89,7 +89,7 @@ void chipset_fsp_early_init(FSP_INIT_PARAMS *FspInitParams,
|
|||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_I89XX)
|
||||
/* Initialize the UPD Data */
|
||||
GetUpdDefaultFromFsp (fsp_ptr, fsp_upd_data);/home/martin/extra/git/coreboot
|
||||
GetUpdDefaultFromFsp (fsp_ptr, fsp_upd_data);
|
||||
ConfigureDefaultUpdData(fsp_upd_data);
|
||||
#else
|
||||
pFspRtBuffer->Platform.MemoryConfig = &MemoryConfig;
|
||||
|
|
|
@ -75,11 +75,4 @@ GetLowMemorySize (
|
|||
uint32_t *LowMemoryLength
|
||||
);
|
||||
|
||||
void
|
||||
GetFspReservedMemoryFromGuid (
|
||||
uint32_t *FspMemoryBase,
|
||||
uint32_t *FspMemoryLength,
|
||||
EFI_GUID FspReservedMemoryGuid
|
||||
);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue