From becaf336562d1683cbae364928f28d046ee081ad Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Mon, 4 Nov 2013 02:19:19 -0800 Subject: [PATCH] client: Remove redundant code in OpenCL CPU detection which was added in commit 8888ba6 --- client/gpu_opencl.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/gpu_opencl.cpp b/client/gpu_opencl.cpp index a5b5593163..8e8572b88e 100644 --- a/client/gpu_opencl.cpp +++ b/client/gpu_opencl.cpp @@ -107,8 +107,6 @@ static bool is_NVIDIA(char* vendor) { static bool is_intel(char* vendor) { if (strcasestr(vendor, "intel")) return true; - if (strcasestr(vendor, "GenuineIntel")) return true; - if (strcasestr(vendor, "Intel(R) Corporation")) return true; return false; }