Commit 2b91c4a8 authored by Iwona Winiarska's avatar Iwona Winiarska Committed by Guenter Roeck
Browse files

hwmon: (peci/cputemp) Fix miscalculated DTS for SKX

parent e8d018dd
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -537,6 +537,12 @@ static const struct cpu_info cpu_hsx = {
	.thermal_margin_to_millidegree = &dts_eight_dot_eight_to_millidegree,
};

static const struct cpu_info cpu_skx = {
	.reg		= &resolved_cores_reg_hsx,
	.min_peci_revision = 0x33,
	.thermal_margin_to_millidegree = &dts_ten_dot_six_to_millidegree,
};

static const struct cpu_info cpu_icx = {
	.reg		= &resolved_cores_reg_icx,
	.min_peci_revision = 0x40,
@@ -558,7 +564,7 @@ static const struct auxiliary_device_id peci_cputemp_ids[] = {
	},
	{
		.name = "peci_cpu.cputemp.skx",
		.driver_data = (kernel_ulong_t)&cpu_hsx,
		.driver_data = (kernel_ulong_t)&cpu_skx,
	},
	{
		.name = "peci_cpu.cputemp.icx",