These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / tools / build / feature / test-get_cpuid.c
1 #include <cpuid.h>
2
3 int main(void)
4 {
5         unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0;
6         return __get_cpuid(0x15, &eax, &ebx, &ecx, &edx);
7 }