mirror of https://gitee.com/openkylin/linux.git
platform-drivers-x86 for 4.9-2
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 -----BEGIN PGP SIGNATURE----- iQEcBAABAgAGBQJYB7xbAAoJEKbMaAwKp364JZ0IAKbnhIY5UuwIxbShgbKR6o/H QOosQwHx+ZzGW4jtYRCEMU1uJH5B4CESMlUzPMJSqkpAz4yZyvaLnMnNL1C2QQkV vzn92owyeuNm1VmWxCBL5EbowcMQyAlWtZik9JEwz9G1nlSOlgOhjH4mfugePJLr 2sCGyfenzXM3otTTB5eGqKg6+4upmf/H8I3HQlu8TUnISslFHahf9czOaFWKwrK6 tm4nWHzx/nx4PcPQm+EvWT5mlsg/+DhFtyzJIqPZypmBuXR2MRaomqe8AugAXcst iVHxve7CWrw/Oiaa4tESdS/P2KhnLzVbDjUaOyAMLyBu670xBnlieH6Q4jJjd4Y= =yZrl -----END PGP SIGNATURE----- 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
This commit is contained in:
commit
c3f8f7fa8b
|
@ -576,6 +576,7 @@ config ASUS_WMI
|
||||||
config ASUS_NB_WMI
|
config ASUS_NB_WMI
|
||||||
tristate "Asus Notebook WMI Driver"
|
tristate "Asus Notebook WMI Driver"
|
||||||
depends on ASUS_WMI
|
depends on ASUS_WMI
|
||||||
|
depends on SERIO_I8042 || SERIO_I8042 = n
|
||||||
---help---
|
---help---
|
||||||
This is a driver for newer Asus notebooks. It adds extra features
|
This is a driver for newer Asus notebooks. It adds extra features
|
||||||
like wireless radio and bluetooth control, leds, hotkeys, backlight...
|
like wireless radio and bluetooth control, leds, hotkeys, backlight...
|
||||||
|
|
|
@ -933,6 +933,13 @@ static const struct dmi_system_id no_hw_rfkill_list[] = {
|
||||||
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 900"),
|
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 900"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.ident = "Lenovo YOGA 910-13IKB",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 910-13IKB"),
|
||||||
|
},
|
||||||
|
},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue