From patchwork Fri Mar 1 23:40:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kenneth Graunke X-Patchwork-Id: 2205281 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 E6E943FCF6 for ; Fri, 1 Mar 2013 23:40:26 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F3879E6523 for ; Fri, 1 Mar 2013 15:40:26 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from hapkido.dreamhost.com (hapkido.dreamhost.com [66.33.216.122]) by gabe.freedesktop.org (Postfix) with ESMTP id 601ACE5DBA for ; Fri, 1 Mar 2013 15:39:33 -0800 (PST) Received: from homiemail-a37.g.dreamhost.com (caiajhbdcagg.dreamhost.com [208.97.132.66]) by hapkido.dreamhost.com (Postfix) with ESMTP id 1CB3EDCAC3 for ; Fri, 1 Mar 2013 15:39:33 -0800 (PST) Received: from homiemail-a37.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a37.g.dreamhost.com (Postfix) with ESMTP id 3DE5A20806B; Fri, 1 Mar 2013 15:39:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=whitecape.org; h=from:to :cc:subject:date:message-id; s=whitecape.org; bh=0uL+RAXnyBDh2be C4dSlatpjxlc=; b=J85oHr4MRYrwJe2QD+j4L5lo7kQM4aw/xXs4Yhrg7fzlEDz aMOBOQ2GlwXIYAz7HTw0mO1by61kwK2dq+ppdQgiBaXrKyQLhsafDgS7RpZixNJX G817ImmCWmZM24+MuuSo9Cl16lkQFi1BfgIzMIEdOeySxCedWNZTpjt8oWcY= Received: from vakarian.amr.corp.intel.com (static-50-43-15-186.bvtn.or.frontiernet.net [50.43.15.186]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: kenneth@whitecape.org) by homiemail-a37.g.dreamhost.com (Postfix) with ESMTPSA id D3787208063; Fri, 1 Mar 2013 15:39:31 -0800 (PST) From: Kenneth Graunke To: intel-gfx@lists.freedesktop.org Date: Fri, 1 Mar 2013 15:40:18 -0800 Message-Id: <1362181218-2567-1-git-send-email-kenneth@whitecape.org> X-Mailer: git-send-email 1.8.1.4 Subject: [Intel-gfx] [xf86-video-intel PATCH] intel: Fix Haswell CRW PCI IDs. 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 second digit was off by one, which meant we accidentally treated GT(n) as GT(n-1). This also meant no support for GT1 at all. Signed-off-by: Kenneth Graunke --- src/intel_driver.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/intel_driver.h b/src/intel_driver.h index c98025b..0dda5b1 100644 --- a/src/intel_driver.h +++ b/src/intel_driver.h @@ -219,15 +219,15 @@ #define PCI_CHIP_HASWELL_ULT_S_GT1 0x0A0A #define PCI_CHIP_HASWELL_ULT_S_GT2 0x0A1A #define PCI_CHIP_HASWELL_ULT_S_GT2_PLUS 0x0A2A -#define PCI_CHIP_HASWELL_CRW_D_GT1 0x0D12 -#define PCI_CHIP_HASWELL_CRW_D_GT2 0x0D22 -#define PCI_CHIP_HASWELL_CRW_D_GT2_PLUS 0x0D32 -#define PCI_CHIP_HASWELL_CRW_M_GT1 0x0D16 -#define PCI_CHIP_HASWELL_CRW_M_GT2 0x0D26 -#define PCI_CHIP_HASWELL_CRW_M_GT2_PLUS 0x0D36 -#define PCI_CHIP_HASWELL_CRW_S_GT1 0x0D1A -#define PCI_CHIP_HASWELL_CRW_S_GT2 0x0D2A -#define PCI_CHIP_HASWELL_CRW_S_GT2_PLUS 0x0D3A +#define PCI_CHIP_HASWELL_CRW_D_GT1 0x0D02 +#define PCI_CHIP_HASWELL_CRW_D_GT2 0x0D12 +#define PCI_CHIP_HASWELL_CRW_D_GT2_PLUS 0x0D22 +#define PCI_CHIP_HASWELL_CRW_M_GT1 0x0D06 +#define PCI_CHIP_HASWELL_CRW_M_GT2 0x0D16 +#define PCI_CHIP_HASWELL_CRW_M_GT2_PLUS 0x0D26 +#define PCI_CHIP_HASWELL_CRW_S_GT1 0x0D0A +#define PCI_CHIP_HASWELL_CRW_S_GT2 0x0D1A +#define PCI_CHIP_HASWELL_CRW_S_GT2_PLUS 0x0D2A #define PCI_CHIP_VALLEYVIEW_PO 0x0f30 #define PCI_CHIP_VALLEYVIEW_1 0x0f31