From patchwork Wed Feb 8 20:09:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Roper X-Patchwork-Id: 13133665 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 462A7C636D3 for ; Wed, 8 Feb 2023 20:09:33 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B7BB210E85E; Wed, 8 Feb 2023 20:09:32 +0000 (UTC) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 0DBD810E85E for ; Wed, 8 Feb 2023 20:09:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675886971; x=1707422971; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=97HT++LLfGkk04VA6a0XkRwnLLESEx3mQY50kEgkpG8=; b=Dxj0Rrzl4CqwLsz/GN7wZ1ZtNtvHFhtyC1DdPC3lbK3YuGk0VgtwsE6l 0MuYc1jNgmc2Rpfg1XGjknOlLP1+t/4AOVZd2Xc/uI/pTFIjBWDUcEQhj j0BrS81cCGzf2NdtiyCxJVPrYv2EiT8R4RSP6uga6ZHzGOImUQyenF1zc Fw49h41XQW0abS3DJ61tNJvd6yDm4UUF0V/mgKkNhQv0gXUrS9cpozKaE Y7KD3zQ93TaXKq5gCMa/JslmqHQoc4MJ4wx4CDCtB89Amofr75IalZUJI pu3oI1c8a61CJtoH//nvCImoO7PkKfCLzEdTxDZykJ/XdevwgKng2w+MV w==; X-IronPort-AV: E=McAfee;i="6500,9779,10615"; a="327605954" X-IronPort-AV: E=Sophos;i="5.97,281,1669104000"; d="scan'208";a="327605954" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Feb 2023 12:09:18 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10615"; a="912846138" X-IronPort-AV: E=Sophos;i="5.97,281,1669104000"; d="scan'208";a="912846138" Received: from mdroper-desk1.fm.intel.com ([10.1.27.134]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Feb 2023 12:09:18 -0800 From: Matt Roper To: intel-gfx@lists.freedesktop.org Date: Wed, 8 Feb 2023 12:09:05 -0800 Message-Id: <20230208200905.680865-1-matthew.d.roper@intel.com> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH] drm/i915/dg2: Drop one PCI ID X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" The bspec was recently updated to remove PCI ID 0x5698; this ID is actually reserved for future use and should not be treated as DG2-G11. Bspec: 44477 Fixes: 8618b8489ba6 ("drm/i915: DG2 and ATS-M device ID updates") Signed-off-by: Matt Roper Reviewed-by: Gustavo Sousa --- include/drm/i915_pciids.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index 92205054e542..9c325c6b8df9 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h @@ -707,7 +707,6 @@ INTEL_VGA_DEVICE(0x5693, info), \ INTEL_VGA_DEVICE(0x5694, info), \ INTEL_VGA_DEVICE(0x5695, info), \ - INTEL_VGA_DEVICE(0x5698, info), \ INTEL_VGA_DEVICE(0x56A5, info), \ INTEL_VGA_DEVICE(0x56A6, info), \ INTEL_VGA_DEVICE(0x56B0, info), \