*/
 struct cpuid_range *leafs_basic, *leafs_ext;
 
-static bool is_amd;
 static bool show_details;
 static bool show_raw;
 static bool show_flags_only = true;
 
 static void setup_platform_cpuid(void)
 {
-        u32 eax, ebx, ecx, edx;
-
-       /* Check vendor */
-       eax = ebx = ecx = edx = 0;
-       cpuid(&eax, &ebx, &ecx, &edx);
-
-       /* "htuA" */
-       if (ebx == 0x68747541)
-               is_amd = true;
-
        /* Setup leafs for the basic and extended range */
        leafs_basic = setup_cpuid_range(0x0);
        leafs_ext = setup_cpuid_range(0x80000000);