Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1592823 > unrolled thread

[PATCH v2] x86/reboot/quirks: add ASUS EeeBook X205TA/W reboot quirk

Started byMatjaz Hegedic <matjaz.hegedic@gmail.com>
First post2017-03-05 19:20 +0100
Last post2017-03-06 12:00 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2] x86/reboot/quirks: add ASUS EeeBook X205TA/W reboot quirk Matjaz Hegedic <matjaz.hegedic@gmail.com> - 2017-03-05 19:20 +0100
    [tip:x86/urgent] x86/reboot/quirks: Add ASUS EeeBook X205TA/W  reboot quirk tip-bot for Matjaz Hegedic <tipbot@zytor.com> - 2017-03-06 12:00 +0100

#1592823 — [PATCH v2] x86/reboot/quirks: add ASUS EeeBook X205TA/W reboot quirk

FromMatjaz Hegedic <matjaz.hegedic@gmail.com>
Date2017-03-05 19:20 +0100
Subject[PATCH v2] x86/reboot/quirks: add ASUS EeeBook X205TA/W reboot quirk
Message-ID<thIVb-49C-3@gated-at.bofh.it>
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 <matjaz.hegedic@gmail.com>
---
 arch/x86/kernel/reboot.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c
index e244c19..067f981 100644
--- a/arch/x86/kernel/reboot.c
+++ b/arch/x86/kernel/reboot.c
@@ -223,6 +223,22 @@ 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, "X205TA"),
+		},
+	},
+	{	/* Handle problems with rebooting on ASUS EeeBook X205TAW */
+		.callback = set_acpi_reboot,
+		.ident = "ASUS EeeBook X205TAW",
+		.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

[toc] | [next] | [standalone]


#1593196 — [tip:x86/urgent] x86/reboot/quirks: Add ASUS EeeBook X205TA/W reboot quirk

Fromtip-bot for Matjaz Hegedic <tipbot@zytor.com>
Date2017-03-06 12:00 +0100
Subject[tip:x86/urgent] x86/reboot/quirks: Add ASUS EeeBook X205TA/W reboot quirk
Message-ID<thYwV-6Yd-7@gated-at.bofh.it>
In reply to#1592823
Commit-ID:  3b3e78552d3077ec70d2640e629e07e3ab416a6a
Gitweb:     http://git.kernel.org/tip/3b3e78552d3077ec70d2640e629e07e3ab416a6a
Author:     Matjaz Hegedic <matjaz.hegedic@gmail.com>
AuthorDate: Sun, 5 Mar 2017 19:16:44 +0100
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Mon, 6 Mar 2017 11:47:43 +0100

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 <matjaz.hegedic@gmail.com>
Link: http://lkml.kernel.org/r/1488737804-20681-1-git-send-email-matjaz.hegedic@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
 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 01c9cda..4194d6f 100644
--- a/arch/x86/kernel/reboot.c
+++ b/arch/x86/kernel/reboot.c
@@ -231,6 +231,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
 			DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
 		},
 	},
+	{	/* Handle problems with rebooting on ASUS EeeBook X205TAW */
+		.callback = set_acpi_reboot,
+		.ident = "ASUS EeeBook X205TAW",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+			DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
+		},
+	},
 
 	/* Certec */
 	{       /* Handle problems with rebooting on Certec BPC600 */

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web