diff options
author | Matjaz Hegedic <matjaz.hegedic@gmail.com> | 2017-04-04 15:32:37 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-12 06:41:22 -0400 |
commit | 0605fff95d3328f42c2b78f48144c6a5174bc899 (patch) | |
tree | 36bf2a051e82b7e1fe1aef627ac1bc3b558aa065 /arch/x86 | |
parent | 7c6b1ad9deb53d40a7a3dd7e2ad05e4e65ad10e0 (diff) |
x86/reboot/quirks: Add ASUS EeeBook X205TA reboot quirk
[ Upstream commit 90b28ded88dda8bea82b4a86923e73ba0746d884 ]
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 <matjaz.hegedic@gmail.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/reboot.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index e244c19a2451..01c9cda3e1b7 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
@@ -223,6 +223,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { | |||
223 | DMI_MATCH(DMI_BOARD_NAME, "P4S800"), | 223 | DMI_MATCH(DMI_BOARD_NAME, "P4S800"), |
224 | }, | 224 | }, |
225 | }, | 225 | }, |
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 | }, | ||
226 | 234 | ||
227 | /* Certec */ | 235 | /* Certec */ |
228 | { /* Handle problems with rebooting on Certec BPC600 */ | 236 | { /* Handle problems with rebooting on Certec BPC600 */ |