Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[linux/fpc-iii.git] / arch / x86 / boot / cpuflags.h
blob4cb404fd45ceaa0e89f9e669d6a59de4ce378449
1 #ifndef BOOT_CPUFLAGS_H
2 #define BOOT_CPUFLAGS_H
4 #include <asm/cpufeatures.h>
5 #include <asm/processor-flags.h>
7 struct cpu_features {
8 int level; /* Family, or 64 for x86-64 */
9 int model;
10 u32 flags[NCAPINTS];
13 extern struct cpu_features cpu;
14 extern u32 cpu_vendor[3];
16 int has_eflag(unsigned long mask);
17 void get_cpuflags(void);
19 #endif