Skip to content

Commit fecba78

Browse files
committed
platform/x86: ISST: Update minor version
JIRA: https://issues.redhat.com/browse/RHEL-110834 commit c9a2014 Author: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Date: Tue May 6 09:35:31 2025 -0700 platform/x86: ISST: Update minor version Update SST minor version after supporting SST-PP and SST-TF version 2. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Link: https://lore.kernel.org/r/20250506163531.1061185-4-srinivas.pandruvada@linux.intel.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Steve Best <sbest@redhat.com>
1 parent a653183 commit fecba78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
/* Supported SST hardware version by this driver */
3636
#define ISST_MAJOR_VERSION 0
37-
#define ISST_MINOR_VERSION 1
37+
#define ISST_MINOR_VERSION 2
3838

3939
/*
4040
* Used to indicate if value read from MMIO needs to get multiplied
@@ -380,7 +380,7 @@ static int sst_main(struct auxiliary_device *auxdev, struct tpmi_per_power_domai
380380
return -ENODEV;
381381
}
382382

383-
if (TPMI_MINOR_VERSION(pd_info->sst_header.interface_version) != ISST_MINOR_VERSION)
383+
if (TPMI_MINOR_VERSION(pd_info->sst_header.interface_version) > ISST_MINOR_VERSION)
384384
dev_info(dev, "SST: Ignore: Unsupported minor version:%lx\n",
385385
TPMI_MINOR_VERSION(pd_info->sst_header.interface_version));
386386

0 commit comments

Comments
 (0)