Skip to content

Commit 0ba9e9c

Browse files
mjruhlij-intel
authored andcommitted
drm/xe: Correct the rev value for the DVSEC entries
By definition, the Designated Vendor Specific Extended Capability (DVSEC) revision should be 1. Add the rev value to be correct. Fixes: 0c45e76 ("drm/xe/vsec: Support BMG devices") Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com> Reviewed-by: David E. Box <david.e.box@linux.intel.com> Link: https://lore.kernel.org/r/20250713172943.7335-3-michael.j.ruhl@intel.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent 54d5cd4 commit 0ba9e9c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/gpu/drm/xe/xe_vsec.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#define BMG_DEVICE_ID 0xE2F8
2525

2626
static struct intel_vsec_header bmg_telemetry = {
27+
.rev = 1,
2728
.length = 0x10,
2829
.id = VSEC_ID_TELEMETRY,
2930
.num_entries = 2,
@@ -33,6 +34,7 @@ static struct intel_vsec_header bmg_telemetry = {
3334
};
3435

3536
static struct intel_vsec_header bmg_punit_crashlog = {
37+
.rev = 1,
3638
.length = 0x10,
3739
.id = VSEC_ID_CRASHLOG,
3840
.num_entries = 1,
@@ -42,6 +44,7 @@ static struct intel_vsec_header bmg_punit_crashlog = {
4244
};
4345

4446
static struct intel_vsec_header bmg_oobmsm_crashlog = {
47+
.rev = 1,
4548
.length = 0x10,
4649
.id = VSEC_ID_CRASHLOG,
4750
.num_entries = 1,

0 commit comments

Comments
 (0)