Skip to content

Commit 90b28de

Browse files
hmatjazIngo Molnar
authored andcommitted
x86/reboot/quirks: Add ASUS EeeBook X205TA reboot quirk
Without the parameter reboot=a, ASUS EeeBook X205TA will hang when it should reboot. This adds the appropriate quirk, thus fixing the problem. Signed-off-by: Matjaz Hegedic <[email protected]> Cc: Andy Lutomirski <[email protected]> Cc: Borislav Petkov <[email protected]> Cc: Brian Gerst <[email protected]> Cc: Denys Vlasenko <[email protected]> Cc: H. Peter Anvin <[email protected]> Cc: Josh Poimboeuf <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
1 parent 1b17c6d commit 90b28de

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
@@ -223,6 +223,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
223223
DMI_MATCH(DMI_BOARD_NAME, "P4S800"),
224224
},
225225
},
226+
{ /* Handle problems with rebooting on ASUS EeeBook X205TA */
227+
.callback = set_acpi_reboot,
228+
.ident = "ASUS EeeBook X205TA",
229+
.matches = {
230+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
231+
DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
232+
},
233+
},
226234

227235
/* Certec */
228236
{ /* Handle problems with rebooting on Certec BPC600 */

0 commit comments

Comments
 (0)