mainboard/intel/cougar_canyon2/romstage.c: Missing prototype
Fix warning thrown by Clang due to missing prototype for main entry point function in -ffreestanding. main() is as any other function in freestanding and so a prototype is strictly needed. Change-Id: Icb29ced0306d5089049a35b1d8862f86a555ff1f Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/7517 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
f52beee059
commit
b2086a0e22
|
@ -173,6 +173,7 @@ static void rcba_config(void)
|
||||||
RCBA32(FD) = reg32;
|
RCBA32(FD) = reg32;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void main(FSP_INFO_HEADER *fsp_info_header); // XXX find a better place dorothy
|
||||||
void main(FSP_INFO_HEADER *fsp_info_header)
|
void main(FSP_INFO_HEADER *fsp_info_header)
|
||||||
{
|
{
|
||||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
||||||
|
|
Loading…
Reference in New Issue