diff options
Diffstat (limited to 'arch/x86/include/uapi/asm/msr.h')
-rw-r--r-- | arch/x86/include/uapi/asm/msr.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/include/uapi/asm/msr.h b/arch/x86/include/uapi/asm/msr.h new file mode 100644 index 00000000000..155e51048fa --- /dev/null +++ b/arch/x86/include/uapi/asm/msr.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _UAPI_ASM_X86_MSR_H | ||
2 | #define _UAPI_ASM_X86_MSR_H | ||
3 | |||
4 | #include <asm/msr-index.h> | ||
5 | |||
6 | #ifndef __ASSEMBLY__ | ||
7 | |||
8 | #include <linux/types.h> | ||
9 | #include <linux/ioctl.h> | ||
10 | |||
11 | #define X86_IOC_RDMSR_REGS _IOWR('c', 0xA0, __u32[8]) | ||
12 | #define X86_IOC_WRMSR_REGS _IOWR('c', 0xA1, __u32[8]) | ||
13 | |||
14 | #endif /* __ASSEMBLY__ */ | ||
15 | #endif /* _UAPI_ASM_X86_MSR_H */ | ||