From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paulo Zanoni Subject: [PATCH IGT 6/6] lib: fix HAS_PCH_SPLIT check Date: Fri, 1 Mar 2013 17:44:22 -0300 Message-ID: <1362170662-651-6-git-send-email-przanoni@gmail.com> References: <1362170662-651-1-git-send-email-przanoni@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-yh0-f41.google.com (mail-yh0-f41.google.com [209.85.213.41]) by gabe.freedesktop.org (Postfix) with ESMTP id A76E3E5D0D for ; Fri, 1 Mar 2013 12:44:58 -0800 (PST) Received: by mail-yh0-f41.google.com with SMTP id 47so533997yhr.0 for ; Fri, 01 Mar 2013 12:44:58 -0800 (PST) In-Reply-To: <1362170662-651-1-git-send-email-przanoni@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: intel-gfx@lists.freedesktop.org Cc: Paulo Zanoni List-Id: intel-gfx@lists.freedesktop.org From: Paulo Zanoni So HAS_PCH_SPLIT on't be true on VLV. Signed-off-by: Paulo Zanoni --- lib/intel_chipset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h index f703239..90b7e08 100755 --- a/lib/intel_chipset.h +++ b/lib/intel_chipset.h @@ -261,7 +261,7 @@ #define HAS_PCH_SPLIT(devid) (IS_GEN5(devid) || \ IS_GEN6(devid) || \ - IS_GEN7(devid)) + IS_IVYBRIDGE(devid) || IS_HASWELL(devid)) #define HAS_BLT_RING(devid) (IS_GEN6(devid) || \ IS_GEN7(devid)) -- 1.7.10.4