Changeset 8810 in vbox for trunk/src/VBox
- Timestamp:
- May 14, 2008 1:48:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDRVShared.c
r8796 r8810 45 45 #include <iprt/cpuset.h> 46 46 #include <iprt/log.h> 47 / / XXX VBox/x86.h not compatible with the Linux kernel sources47 /* VBox/x86.h not compatible with the Linux kernel sources */ 48 48 #ifdef RT_OS_LINUX 49 49 # define X86_CPUID_VENDOR_AMD_EBX 0x68747541 … … 3926 3926 /* Check for "AuthenticAMD" */ 3927 3927 ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX); 3928 if ( uEAX >= 1 3929 && uEBX == X86_CPUID_VENDOR_AMD_EBX 3930 && uECX == X86_CPUID_VENDOR_AMD_ECX 3928 if ( uEAX >= 1 3929 && uEBX == X86_CPUID_VENDOR_AMD_EBX 3930 && uECX == X86_CPUID_VENDOR_AMD_ECX 3931 3931 && uEDX == X86_CPUID_VENDOR_AMD_EDX) 3932 3932 {
Note:
See TracChangeset
for help on using the changeset viewer.