cpu/intel/microcode: Fix typo in function parameter
Change-Id: I9b03105a6808a67c2101917e1822729407271627 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50441 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
f843e0a8ef
commit
56a676e5d0
|
@ -187,7 +187,7 @@ void intel_update_microcode_from_cbfs(void)
|
|||
}
|
||||
|
||||
#if ENV_RAMSTAGE
|
||||
__weak int soc_skip_ucode_update(u32 currrent_patch_id,
|
||||
__weak int soc_skip_ucode_update(u32 current_patch_id,
|
||||
u32 new_patch_id)
|
||||
{
|
||||
return 0;
|
||||
|
|
|
@ -17,7 +17,7 @@ void intel_microcode_load_unlocked(const void *microcode_patch);
|
|||
|
||||
/* SoC specific check to determine if microcode update is really
|
||||
* required, will skip microcode update if true. */
|
||||
int soc_skip_ucode_update(u32 currrent_patch_id, u32 new_patch_id);
|
||||
int soc_skip_ucode_update(u32 current_patch_id, u32 new_patch_id);
|
||||
|
||||
/* return the version of the currently running microcode */
|
||||
uint32_t get_current_microcode_rev(void);
|
||||
|
|
Loading…
Reference in New Issue