Skip to content

Commit afb4c16

Browse files
committed
Merge: thermal: intel updates
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-10/-/merge_requests/400 Description: updates for drivers/thermal/intel JIRA: https://issues.redhat.com/browse/RHEL-79162 Build Info: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=66704543 Tested: Successful platform test results on Intel (intel-arrowlake-s-02) system. Signed-off-by: Steve Best <sbest@redhat.com> Approved-by: Tony Camuso <tcamuso@redhat.com> Approved-by: Mark Langsdorf <mlangsdo@redhat.com> Approved-by: David Arcari <darcari@redhat.com> Approved-by: Eric Chanudet <echanude@redhat.com> Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> Merged-by: Julio Faracco <jfaracco@redhat.com>
2 parents 1185931 + 491ff31 commit afb4c16

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+63
-62
lines changed

arch/x86/include/asm/intel-family.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@
177177
#define INTEL_XEON_PHI_KNM IFM(6, 0x85) /* Knights Mill */
178178

179179
/* Family 5 */
180-
#define INTEL_FAM5_QUARK_X1000 0x09 /* Quark X1000 SoC */
181180
#define INTEL_QUARK_X1000 IFM(5, 0x09) /* Quark X1000 SoC */
182181

183182
/* Family 19 */

arch/x86/platform/efi/quirks.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,8 +656,7 @@ static int qrk_capsule_setup_info(struct capsule_info *cap_info, void **pkbuff,
656656
}
657657

658658
static const struct x86_cpu_id efi_capsule_quirk_ids[] = {
659-
X86_MATCH_VENDOR_FAM_MODEL(INTEL, 5, INTEL_FAM5_QUARK_X1000,
660-
&qrk_capsule_setup_info),
659+
X86_MATCH_VFM(INTEL_QUARK_X1000, &qrk_capsule_setup_info),
661660
{ }
662661
};
663662

arch/x86/platform/intel-quark/imr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ static void __init imr_fixup_memmap(struct imr_device *idev)
569569
}
570570

571571
static const struct x86_cpu_id imr_ids[] __initconst = {
572-
X86_MATCH_VENDOR_FAM_MODEL(INTEL, 5, INTEL_FAM5_QUARK_X1000, NULL),
572+
X86_MATCH_VFM(INTEL_QUARK_X1000, NULL),
573573
{}
574574
};
575575

arch/x86/platform/intel-quark/imr_selftest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static void __init imr_self_test(void)
105105
}
106106

107107
static const struct x86_cpu_id imr_ids[] __initconst = {
108-
X86_MATCH_VENDOR_FAM_MODEL(INTEL, 5, INTEL_FAM5_QUARK_X1000, NULL),
108+
X86_MATCH_VFM(INTEL_QUARK_X1000, NULL),
109109
{}
110110
};
111111

drivers/acpi/dptf/dptf_pch_fivr.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ static const struct acpi_device_id pch_fivr_device_ids[] = {
152152
{"INTC1064", 0},
153153
{"INTC106B", 0},
154154
{"INTC10A3", 0},
155+
{"INTC10D7", 0},
155156
{"", 0},
156157
};
157158
MODULE_DEVICE_TABLE(acpi, pch_fivr_device_ids);

drivers/acpi/dptf/dptf_power.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ static const struct acpi_device_id int3407_device_ids[] = {
236236
{"INTC106D", 0},
237237
{"INTC10A4", 0},
238238
{"INTC10A5", 0},
239+
{"INTC10D8", 0},
240+
{"INTC10D9", 0},
239241
{"", 0},
240242
};
241243
MODULE_DEVICE_TABLE(acpi, int3407_device_ids);

drivers/acpi/dptf/int340x_thermal.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ static const struct acpi_device_id int340x_thermal_device_ids[] = {
5555
{"INTC10A3"},
5656
{"INTC10A4"},
5757
{"INTC10A5"},
58+
{"INTC10D4"},
59+
{"INTC10D5"},
60+
{"INTC10D6"},
61+
{"INTC10D7"},
62+
{"INTC10D8"},
63+
{"INTC10D9"},
5864
{""},
5965
};
6066

drivers/acpi/fan.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{"INTC1063", }, /* Fan for Meteor Lake generation */ \
2020
{"INTC106A", }, /* Fan for Lunar Lake generation */ \
2121
{"INTC10A2", }, /* Fan for Raptor Lake generation */ \
22+
{"INTC10D6", }, /* Fan for Panther Lake generation */ \
2223
{"PNP0C0B", } /* Generic ACPI fan */
2324

2425
#define ACPI_FPS_NAME_LEN 20

drivers/thermal/amlogic_thermal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ static struct platform_driver amlogic_thermal_driver = {
333333
.of_match_table = of_amlogic_thermal_match,
334334
},
335335
.probe = amlogic_thermal_probe,
336-
.remove_new = amlogic_thermal_remove,
336+
.remove = amlogic_thermal_remove,
337337
};
338338

339339
module_platform_driver(amlogic_thermal_driver);

drivers/thermal/armada_thermal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ static void armada_thermal_exit(struct platform_device *pdev)
970970

971971
static struct platform_driver armada_thermal_driver = {
972972
.probe = armada_thermal_probe,
973-
.remove_new = armada_thermal_exit,
973+
.remove = armada_thermal_exit,
974974
.driver = {
975975
.name = "armada_thermal",
976976
.of_match_table = armada_thermal_id_table,

0 commit comments

Comments
 (0)