Skip to content

Commit e1c1087

Browse files
committed
Merge tag 'platform-drivers-x86-v4.5-2' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86
Pull x86 platform driver updates from Darren Hart: "Emergency travel prevented me from completing my final testing on this until today. Nothing here that couldn't wait until RC1 fixes, but I thought it best to get it out sooner rather than later as it does contain a build warning fix. Summary: A build warning fix, MAINTAINERS cleanup, and a new DMI quirk: ideapad-laptop: - Add Lenovo Yoga 700 to no_hw_rfkill dmi list MAINTAINERS: - Combine multiple telemetry entries intel_telemetry_debugfs: - Fix unused warnings in telemetry debugfs" * tag 'platform-drivers-x86-v4.5-2' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86: ideapad-laptop: Add Lenovo Yoga 700 to no_hw_rfkill dmi list MAINTAINERS: Combine multiple telemetry entries intel_telemetry_debugfs: Fix unused warnings in telemetry debugfs
2 parents 81f05fe + 6b31de3 commit e1c1087

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

MAINTAINERS

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5780,10 +5780,8 @@ INTEL TELEMETRY DRIVER
57805780
M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
57815781
L: platform-driver-x86@vger.kernel.org
57825782
S: Maintained
5783-
F: drivers/platform/x86/intel_telemetry_core.c
57845783
F: arch/x86/include/asm/intel_telemetry.h
5785-
F: drivers/platform/x86/intel_telemetry_pltdrv.c
5786-
F: drivers/platform/x86/intel_telemetry_debugfs.c
5784+
F: drivers/platform/x86/intel_telemetry*
57875785

57885786
IOC3 ETHERNET DRIVER
57895787
M: Ralf Baechle <ralf@linux-mips.org>

drivers/platform/x86/ideapad-laptop.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,13 @@ static const struct dmi_system_id no_hw_rfkill_list[] = {
899899
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 3"),
900900
},
901901
},
902+
{
903+
.ident = "Lenovo Yoga 700",
904+
.matches = {
905+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
906+
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 700"),
907+
},
908+
},
902909
{
903910
.ident = "Lenovo Yoga 900",
904911
.matches = {

drivers/platform/x86/intel_telemetry_debugfs.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,11 @@
9696
} \
9797
}
9898

99+
#ifdef CONFIG_PM_SLEEP
99100
static u8 suspend_prep_ok;
100101
static u32 suspend_shlw_ctr_temp, suspend_deep_ctr_temp;
101102
static u64 suspend_shlw_res_temp, suspend_deep_res_temp;
103+
#endif
102104

103105
struct telemetry_susp_stats {
104106
u32 shlw_swake_ctr;

0 commit comments

Comments
 (0)