diff options
author | Matjaz Hegedic <matjaz.hegedic@gmail.com> | 2017-03-09 08:00:17 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-03-10 05:58:33 -0500 |
commit | bba8376aea1dcbbe22bbda118c52abee317c7609 (patch) | |
tree | a1f6e0eaa33f4d40841b1674f784111aebff1360 | |
parent | ea6200e84182989a3cce9687cf79a23ac44ec4db (diff) |
x86/reboot/quirks: Fix typo in ASUS EeeBook X205TA reboot quirk
The reboot quirk for ASUS EeeBook X205TA contains a typo in
DMI_PRODUCT_NAME, improperly referring to X205TAW instead of
X205TA, which prevents the quirk from being triggered. The
model X205TAW already has a reboot quirk of its own.
This fix simply removes the inappropriate final letter W.
Fixes: 90b28ded88dd ("x86/reboot/quirks: Add ASUS EeeBook X205TA reboot quirk")
Signed-off-by: Matjaz Hegedic <matjaz.hegedic@gmail.com>
Link: http://lkml.kernel.org/r/1489064417-7445-1-git-send-email-matjaz.hegedic@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/x86/kernel/reboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 4194d6f9bb29..067f9813fd2c 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
@@ -228,7 +228,7 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { | |||
228 | .ident = "ASUS EeeBook X205TA", | 228 | .ident = "ASUS EeeBook X205TA", |
229 | .matches = { | 229 | .matches = { |
230 | DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), | 230 | DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), |
231 | DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"), | 231 | DMI_MATCH(DMI_PRODUCT_NAME, "X205TA"), |
232 | }, | 232 | }, |
233 | }, | 233 | }, |
234 | { /* Handle problems with rebooting on ASUS EeeBook X205TAW */ | 234 | { /* Handle problems with rebooting on ASUS EeeBook X205TAW */ |