summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarry Pan <harry.pan@intel.com>2020-01-06 17:57:00 +0800
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-01-10 11:57:22 +0200
commit4d9ffa0b89fb5fd4aa722b68e60f460dbfbf4a7a (patch)
tree92d1894cfd1788aa4c88c6e27f4fc581503aaad4
parenteb518899c49911327422c88cde60bebeebbc731e (diff)
downloadlinux-4d9ffa0b89fb5fd4aa722b68e60f460dbfbf4a7a.tar.bz2
platform/x86: intel_pmc_core: update Comet Lake platform driver
Adding new CML CPU model ID into platform driver support list. Signed-off-by: Harry Pan <harry.pan@intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r--drivers/platform/x86/intel_pmc_core_pltdrv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/platform/x86/intel_pmc_core_pltdrv.c b/drivers/platform/x86/intel_pmc_core_pltdrv.c
index 6fe829f30997..e1266f5c6359 100644
--- a/drivers/platform/x86/intel_pmc_core_pltdrv.c
+++ b/drivers/platform/x86/intel_pmc_core_pltdrv.c
@@ -44,6 +44,8 @@ static const struct x86_cpu_id intel_pmc_core_platform_ids[] = {
INTEL_CPU_FAM6(KABYLAKE, pmc_core_device),
INTEL_CPU_FAM6(CANNONLAKE_L, pmc_core_device),
INTEL_CPU_FAM6(ICELAKE_L, pmc_core_device),
+ INTEL_CPU_FAM6(COMETLAKE, pmc_core_device),
+ INTEL_CPU_FAM6(COMETLAKE_L, pmc_core_device),
{}
};
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_platform_ids);