From patchwork Tue Feb 26 14:27:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sedat Dilek X-Patchwork-Id: 2185551 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 06EAE3FD4E for ; Tue, 26 Feb 2013 14:28:13 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id CBD73E5F4C for ; Tue, 26 Feb 2013 06:28:12 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-bk0-f43.google.com (mail-bk0-f43.google.com [209.85.214.43]) by gabe.freedesktop.org (Postfix) with ESMTP id 15EC6E5EBA for ; Tue, 26 Feb 2013 06:28:02 -0800 (PST) Received: by mail-bk0-f43.google.com with SMTP id jm19so1858131bkc.16 for ; Tue, 26 Feb 2013 06:28:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=AyZIbT1FPRGZSVqLI1oE3YJxnyoKww7Lihqmi84z3So=; b=1FxsfWUbu3GkSYSuN94uabQ3PLkYCiYjLfWbKuAFiKAzOj9WzYf97BLcVPf5bmgo7S rYgg8mY0xuRumMMa1pCBsmZCWyl/89+Ukqa1qALVVCyYQT8VHpzWjs7T36QrjHNBV9EU x9KJQAfIabyl2EVHJ5zT0fmMJo79ulel6w88E7QLbyMYussUX98qhHkmAFIKV9r0LRBX 1D58A9rW2I7P9uYG6XX7RFvljeqIg2zn02eU2c/9ieXLbxi/sxucfZyxfSQkUUs3bO5r hWHyjjISBog6L6E5z2doxRFwnwsehaMCfL6Es3DPbgGXY7JpOnyeEfq2FpMKS1sLoiCL by/Q== X-Received: by 10.205.136.205 with SMTP id il13mr6626850bkc.93.1361888882050; Tue, 26 Feb 2013 06:28:02 -0800 (PST) Received: from fambox.fritz.box (p5DE56118.dip.t-dialin.net. [93.229.97.24]) by mx.google.com with ESMTPS id fs20sm4850308bkc.8.2013.02.26.06.28.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 26 Feb 2013 06:28:01 -0800 (PST) From: Sedat Dilek To: Chris Wilson , intel-gfx Date: Tue, 26 Feb 2013 15:27:52 +0100 Message-Id: <1361888872-19883-1-git-send-email-sedat.dilek@gmail.com> X-Mailer: git-send-email 1.8.1.4 Cc: Sedat Dilek Subject: [Intel-gfx] [PATCH] sna: Fix comment on GCC version check X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org The comment was introduced with... commit 528dbf9ebb2688f476ef283be59d0f2232159dcb "sna: Fix build on older GCC for cpuid()" ...and is a bit misleading. Signed-off-by: Sedat Dilek --- src/sna/sna_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sna/sna_cpu.c b/src/sna/sna_cpu.c index 9110456..1097ea5 100644 --- a/src/sna/sna_cpu.c +++ b/src/sna/sna_cpu.c @@ -31,7 +31,7 @@ #include "sna.h" -#if defined(__GNUC__) && (__GNUC__ >= 4) /* 4.4 */ +#if defined(__GNUC__) && (__GNUC__ >= 4) /* gcc >= v4 */ #include