Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1592668 > unrolled thread
| Started by | Matjaz Hegedic <matjaz.hegedic@gmail.com> |
|---|---|
| First post | 2017-03-05 02:10 +0100 |
| Last post | 2017-03-05 02:10 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] x86/reboot/quirks: add ASUS EeeBook X205TA reboot quirk Matjaz Hegedic <matjaz.hegedic@gmail.com> - 2017-03-05 02:10 +0100
| From | Matjaz Hegedic <matjaz.hegedic@gmail.com> |
|---|---|
| Date | 2017-03-05 02:10 +0100 |
| Subject | [PATCH] x86/reboot/quirks: add ASUS EeeBook X205TA reboot quirk |
| Message-ID | <thsQp-P3-7@gated-at.bofh.it> |
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>
---
arch/x86/kernel/reboot.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c
index e244c19..01c9cda 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[] = {
DMI_MATCH(DMI_BOARD_NAME, "P4S800"),
},
},
+ { /* Handle problems with rebooting on ASUS EeeBook X205TA */
+ .callback = set_acpi_reboot,
+ .ident = "ASUS EeeBook X205TA",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
+ },
+ },
/* Certec */
{ /* Handle problems with rebooting on Certec BPC600 */
--
2.7.4
Back to top | Article view | linux.kernel
csiph-web