diff options
Diffstat (limited to 'arch/x86/include/asm/mwait.h')
| -rw-r--r-- | arch/x86/include/asm/mwait.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/include/asm/mwait.h b/arch/x86/include/asm/mwait.h index bcdff997668..2f366d0ac6b 100644 --- a/arch/x86/include/asm/mwait.h +++ b/arch/x86/include/asm/mwait.h @@ -4,7 +4,8 @@  #define MWAIT_SUBSTATE_MASK		0xf  #define MWAIT_CSTATE_MASK		0xf  #define MWAIT_SUBSTATE_SIZE		4 -#define MWAIT_MAX_NUM_CSTATES		8 +#define MWAIT_HINT2CSTATE(hint)		(((hint) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) +#define MWAIT_HINT2SUBSTATE(hint)	((hint) & MWAIT_CSTATE_MASK)  #define CPUID_MWAIT_LEAF		5  #define CPUID5_ECX_EXTENSIONS_SUPPORTED 0x1  |