Skip to content

Commit 3b3e785

Browse files
hmatjazKAGA-KOKO
authored andcommitted
x86/reboot/quirks: Add ASUS EeeBook X205TA/W reboot quirk
Without the parameter reboot=a, ASUS EeeBook X205TA/W will hang when it should reboot. This adds the appropriate quirk, thus fixing the problem. Signed-off-by: Matjaz Hegedic <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent bb1a2c2 commit 3b3e785

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

arch/x86/kernel/reboot.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
231231
DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
232232
},
233233
},
234+
{ /* Handle problems with rebooting on ASUS EeeBook X205TAW */
235+
.callback = set_acpi_reboot,
236+
.ident = "ASUS EeeBook X205TAW",
237+
.matches = {
238+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
239+
DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
240+
},
241+
},
234242

235243
/* Certec */
236244
{ /* Handle problems with rebooting on Certec BPC600 */

0 commit comments

Comments
 (0)