From a23e04b67367ae90e6fee06e4506bee3f00e6ae6 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Mon, 6 Feb 2023 15:55:16 +1100 Subject: [PATCH] intel/dev: remove invalid EHL pci id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removed in linux 0e8e272f1368 ("drm/i915/ehl: Remove invalid PCI ID") Reviewed-by: Lionel Landwerlin Reviewed-by: José Roberto de Souza Part-of: --- include/pci_ids/iris_pci_ids.h | 1 - src/intel/dev/intel_device_info.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/pci_ids/iris_pci_ids.h b/include/pci_ids/iris_pci_ids.h index fd8c32ae991..34d232ad1a4 100644 --- a/include/pci_ids/iris_pci_ids.h +++ b/include/pci_ids/iris_pci_ids.h @@ -138,7 +138,6 @@ CHIPSET(0x8A5C, icl_gt1_5, "ICL GT1.5", "Intel(R) Iris(R) Plus Graphics") CHIPSET(0x8A5D, icl_gt1, "ICL GT1", "Intel(R) HD Graphics") CHIPSET(0x8A71, icl_gt0_5, "ICL GT0.5", "Intel(R) HD Graphics") -CHIPSET(0x4500, ehl_4x8, "EHL", "Intel(R) UHD Graphics") CHIPSET(0x4541, ehl_2x4, "EHL", "Intel(R) UHD Graphics") CHIPSET(0x4551, ehl_4x4, "EHL", "Intel(R) UHD Graphics") CHIPSET(0x4555, ehl_2x8, "EHL", "Intel(R) UHD Graphics") diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 0798046fb02..8bd9c0fe0d4 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -60,7 +60,7 @@ static const struct { { "whl", 0x3EA1 }, { "cml", 0x9b41 }, { "icl", 0x8a52 }, - { "ehl", 0x4500 }, + { "ehl", 0x4571 }, { "jsl", 0x4E71 }, { "tgl", 0x9a49 }, { "rkl", 0x4c8a },