Revert my additions to the patch from #4733, Core 2, Core 2 Duo and Core 2

Quad are all reported as "Core 2", because the CPU count is already reported
separately.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33646 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-10-19 00:07:59 +00:00
parent 095a7d8415
commit 7d05cf36fc

View File

@ -191,10 +191,9 @@ get_cpu_model_string(system_info *info)
get_cpuid_model_string(cpuidName);
if (strcasestr(cpuidName, "Celeron") != NULL)
return "Core 2 Celeron";
if (strcasestr(cpuidName, "Duo") != NULL)
return "Core 2 Duo";
if (strcasestr(cpuidName, "Quad") != NULL)
return "Core 2 Quad";
if (strcasestr(cpuidName, "Duo") != NULL
|| strcasestr(cpuidName, "Quad") != NULL)
return "Core 2";
if (strcasestr(cpuidName, "Xeon") != NULL)
return "Core 2 Xeon";
return "Core 2 Extreme";