diff options
author | José Roberto de Souza <jose.souza@intel.com> | 2023-11-17 09:29:28 -0800 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-21 11:44:51 -0500 |
commit | baf9089c800c46f224f14e2a681ba3a7c1b09374 (patch) | |
tree | 7756d0a1a7ba94277b438ecbb7fa5228ef659716 /include/drm | |
parent | 40709aa761acbc78fe6c0405720d79cbf8345095 (diff) | |
download | linux-stable-baf9089c800c46f224f14e2a681ba3a7c1b09374.tar.gz linux-stable-baf9089c800c46f224f14e2a681ba3a7c1b09374.tar.bz2 linux-stable-baf9089c800c46f224f14e2a681ba3a7c1b09374.zip |
drm/xe: Include RPL-U to pciidlist
RPL-U is defined as a subplatform but those PCI ids were
not included in pciidlist so Xe KMD would never probe device with
those ids.
This is following what i915 does to include RPL-U to PCI ids
probe list.
v2:
- change order to match i915
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/xe_pciids.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/xe_pciids.h b/include/drm/xe_pciids.h index 11deefceffd0..47ff7472c8bd 100644 --- a/include/drm/xe_pciids.h +++ b/include/drm/xe_pciids.h @@ -117,6 +117,7 @@ /* RPL-P */ #define XE_RPLP_IDS(MACRO__, ...) \ + XE_RPLU_IDS(MACRO__, ## __VA_ARGS__), \ MACRO__(0xA720, ## __VA_ARGS__), \ MACRO__(0xA7A0, ## __VA_ARGS__), \ MACRO__(0xA7A8, ## __VA_ARGS__) |