From patchwork Tue Feb 26 14:33:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sedat Dilek X-Patchwork-Id: 2185621 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id D1560DF215 for ; Tue, 26 Feb 2013 14:34:50 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9F72EE5F8C for ; Tue, 26 Feb 2013 06:34:50 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-bk0-f41.google.com (mail-bk0-f41.google.com [209.85.214.41]) by gabe.freedesktop.org (Postfix) with ESMTP id 91741E5F8C for ; Tue, 26 Feb 2013 06:33:58 -0800 (PST) Received: by mail-bk0-f41.google.com with SMTP id q16so1912150bkw.0 for ; Tue, 26 Feb 2013 06:33:57 -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=6E4PNXOVLMRbZLC8ef5eDUmd3e830NLYmbl+quS9k58=; b=wyL96FkFoOfzm9l5gOnEebG7Hd8RbXC6RBwJSp7SyfSci5CC+oQFZ39htLpGMNaypW dAFaLx6Or0nhdpOjCK1Hp7KDws53iSSIJKPMDffm/5Y2FEk331V6s4peuV47D0LsKxrT vMCCzeeBnV5aeoueIWavcKz86exgiuYaVnx1Nd3Hm2Yv0ZY/oHl7R802aB2fKfEjFsTW on9uI9z4HTFXw8G0MbynvPAoU6UxrmuUgFTSjPoyTyvyoe1gNiQJGt3dRLGMUa638lZz S5NO9Xv6uXJ8daPLYkckHK6TmSHwOS2iXMviLgiwxA7wXG6nn/XwFwcw+qWYltmgcNLz 8QcA== X-Received: by 10.204.8.71 with SMTP id g7mr6701331bkg.118.1361889237576; Tue, 26 Feb 2013 06:33:57 -0800 (PST) Received: from fambox.fritz.box (p5DE56118.dip.t-dialin.net. [93.229.97.24]) by mx.google.com with ESMTPS id z6sm4857073bkv.11.2013.02.26.06.33.56 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 26 Feb 2013 06:33:56 -0800 (PST) From: Sedat Dilek To: Chris Wilson , intel-gfx Date: Tue, 26 Feb 2013 15:33:49 +0100 Message-Id: <1361889229-19986-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. [ v2: Point to compatibility with gcc-v4 (e.g. clang) ] 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..3ee4be0 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) /* compiler compatible with gcc-v4 */ #include