x86/microcode/AMD: Shorten function parameter's name
The whole driver calls this "mc", do that here too. No functionality change. Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/20170120202955.4091-6-bp@alien8.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
1f02ac0682
commit
ef901dc33d
|
@ -187,15 +187,15 @@ find_proper_container(u8 *ucode, size_t size, struct container *ret_cont)
|
||||||
return eq_id;
|
return eq_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __apply_microcode_amd(struct microcode_amd *mc_amd)
|
static int __apply_microcode_amd(struct microcode_amd *mc)
|
||||||
{
|
{
|
||||||
u32 rev, dummy;
|
u32 rev, dummy;
|
||||||
|
|
||||||
native_wrmsrl(MSR_AMD64_PATCH_LOADER, (u64)(long)&mc_amd->hdr.data_code);
|
native_wrmsrl(MSR_AMD64_PATCH_LOADER, (u64)(long)&mc->hdr.data_code);
|
||||||
|
|
||||||
/* verify patch application was successful */
|
/* verify patch application was successful */
|
||||||
native_rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy);
|
native_rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy);
|
||||||
if (rev != mc_amd->hdr.patch_id)
|
if (rev != mc->hdr.patch_id)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue