Skip to content

Commit c3f8f7f

Browse files
committed
Merge tag 'platform-drivers-x86-v4.9-2' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86
Pull x86 platform driver fixes from Darren Hart: "Fix a Kconfig issue leading potential link failure, and add a DMI match for an existing quirk. asus-wmi: - add SERIO_I8042 dependency ideapad-laptop: - Add Lenovo Yoga 910-13IKB to no_hw_rfkill dmi list" * tag 'platform-drivers-x86-v4.9-2' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86: platform/x86: asus-wmi: add SERIO_I8042 dependency platform/x86: ideapad-laptop: Add Lenovo Yoga 910-13IKB to no_hw_rfkill dmi list
2 parents 147fdd8 + ea89369 commit c3f8f7f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

drivers/platform/x86/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,7 @@ config ASUS_WMI
576576
config ASUS_NB_WMI
577577
tristate "Asus Notebook WMI Driver"
578578
depends on ASUS_WMI
579+
depends on SERIO_I8042 || SERIO_I8042 = n
579580
---help---
580581
This is a driver for newer Asus notebooks. It adds extra features
581582
like wireless radio and bluetooth control, leds, hotkeys, backlight...

drivers/platform/x86/ideapad-laptop.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -933,6 +933,13 @@ static const struct dmi_system_id no_hw_rfkill_list[] = {
933933
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 900"),
934934
},
935935
},
936+
{
937+
.ident = "Lenovo YOGA 910-13IKB",
938+
.matches = {
939+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
940+
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 910-13IKB"),
941+
},
942+
},
936943
{}
937944
};
938945

0 commit comments

Comments
 (0)