From patchwork Wed Feb 2 00:06:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Deucher X-Patchwork-Id: 524411 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p12075hC025518 for ; Wed, 2 Feb 2011 00:07:26 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A0FE69E912 for ; Tue, 1 Feb 2011 16:07:05 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qw0-f49.google.com (mail-qw0-f49.google.com [209.85.216.49]) by gabe.freedesktop.org (Postfix) with ESMTP id 416739E791 for ; Tue, 1 Feb 2011 16:06:57 -0800 (PST) Received: by qwj9 with SMTP id 9so7200525qwj.36 for ; Tue, 01 Feb 2011 16:06:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=74Hh1as4RbIjnZ9IVHRiTozRZwyD3SZ/96GYR78JQk8=; b=OsK+GdF7ryZlR3myA2R7NpQjdLXiY09XNBgQeVCMkIOzuN1jL3SKKl/4SA2opmlbQ6 pqu7KugYszsB/dV+aOW+ncvNF3Bm6Imtdp+w9uaP4hfNO1+TAuE0wb31i0MfcsTV/xKy 1ylBubNeSuB304k2RjgZNIfyjNhFEnwL/xwGA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=TZKPZAZyIlSSUS91ifq0//6JUUx0Pa3zK4D/tjLotPy9jfxEcW62PuCvsKA1G0lyRI DsUN3ex0TCEp8KbAIKf/vWiCz3dsmxhXp7PQ2lZXQNj3d8DomtKPvaHC1KK68aQrSEPN e/pzXaq9Mf1GATmxWOGTybINgYECB8/VTdzhE= Received: by 10.224.10.205 with SMTP id q13mr8243935qaq.5.1296605216421; Tue, 01 Feb 2011 16:06:56 -0800 (PST) Received: from localhost.localdomain (static-74-96-105-7.washdc.fios.verizon.net [74.96.105.7]) by mx.google.com with ESMTPS id s10sm16062874qco.35.2011.02.01.16.06.55 (version=SSLv3 cipher=RC4-MD5); Tue, 01 Feb 2011 16:06:55 -0800 (PST) From: Alex Deucher To: airlied@gmail.com, dri-devel@lists.freedesktop.org Subject: [PATCH] drm/radeon: remove 0x4243 pci id Date: Tue, 1 Feb 2011 19:06:46 -0500 Message-Id: <1296605206-7498-1-git-send-email-alexdeucher@gmail.com> X-Mailer: git-send-email 1.7.1.1 Cc: stable@kernel.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Wed, 02 Feb 2011 00:07:26 +0000 (UTC) diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 145cfbc..820ee90 100644 --- a/include/drm/drm_pciids.h +++ b/include/drm/drm_pciids.h @@ -28,7 +28,6 @@ {0x1002, 0x4156, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV350}, \ {0x1002, 0x4237, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS200|RADEON_IS_IGP}, \ {0x1002, 0x4242, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R200}, \ - {0x1002, 0x4243, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R200}, \ {0x1002, 0x4336, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS100|RADEON_IS_IGP|RADEON_IS_MOBILITY}, \ {0x1002, 0x4337, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS200|RADEON_IS_IGP|RADEON_IS_MOBILITY}, \ {0x1002, 0x4437, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS200|RADEON_IS_IGP|RADEON_IS_MOBILITY}, \