diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-06-07 20:32:04 (GMT) |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-06-07 20:32:04 (GMT) |
commit | 715c85b1fc824e9cd0ea07d6ceb80d2262f32e90 (patch) | |
tree | 7371367ce975c575b844eddd63daed92d66830a4 /arch/x86/include/asm/msr.h | |
parent | 2c929ce6f1ed1302be225512b433e6a6554f71a4 (diff) | |
download | linux-715c85b1fc824e9cd0ea07d6ceb80d2262f32e90.tar.xz |
x86, cpu: Rename checking_wrmsrl() to wrmsrl_safe()
Rename checking_wrmsrl() to wrmsrl_safe(), to match the naming
convention used by all the other MSR access functions/macros.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/msr.h')
-rw-r--r-- | arch/x86/include/asm/msr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/msr.h b/arch/x86/include/asm/msr.h index cb33b5f..fe83d74 100644 --- a/arch/x86/include/asm/msr.h +++ b/arch/x86/include/asm/msr.h @@ -211,7 +211,7 @@ do { \ #endif /* !CONFIG_PARAVIRT */ -#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \ +#define wrmsrl_safe(msr, val) wrmsr_safe((msr), (u32)(val), \ (u32)((val) >> 32)) #define write_tsc(val1, val2) wrmsr(MSR_IA32_TSC, (val1), (val2)) |