intel/haswell: Add asmlinkage for romstage_after_car()

Change-Id: Ib3c973d2e89d4c25c3bf1e52662fbfcb4b1e4355
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/15789
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Kyösti Mälkki 2016-07-21 21:08:28 +03:00
parent a38677b664
commit b37d01d309
2 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ void romstage_common(const struct romstage_params *params);
void * asmlinkage romstage_main(unsigned long bist);
/* romstage_after_car() is the C function called after cache-as-ram has
* been torn down. It is responsible for loading the ramstage. */
void romstage_after_car(void);
void asmlinkage romstage_after_car(void);
#endif
#ifdef __SMM__

View File

@ -259,7 +259,7 @@ void romstage_common(const struct romstage_params *params)
}
}
void romstage_after_car(void)
void asmlinkage romstage_after_car(void)
{
/* Load the ramstage. */
run_ramstage();