diff options
author | Harry Pan <[email protected]> | 2020-01-06 17:57:00 +0800 |
---|---|---|
committer | Andy Shevchenko <[email protected]> | 2020-01-13 11:37:50 +0200 |
commit | 515ff674bb9bf06186052e352c4587dab8defaf0 (patch) | |
tree | 704b8e52d4f42ef5f9d5264ae4d7b9a16094edd5 | |
parent | 1f27dbd8265dbb379926c8f6a4453fe7fe26d7a3 (diff) |
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 <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
-rw-r--r-- | drivers/platform/x86/intel_pmc_core_pltdrv.c | 2 |
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); |