public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/reboot/quirks: fix typo in ASUS EeeBook X205TA reboot quirk
@ 2017-03-09 13:00 Matjaz Hegedic
  2017-03-10 11:01 ` [tip:x86/urgent] x86/reboot/quirks: Fix " tip-bot for Matjaz Hegedic
  0 siblings, 1 reply; 2+ messages in thread
From: Matjaz Hegedic @ 2017-03-09 13:00 UTC (permalink / raw)
  To: tglx, mingo, hpa; +Cc: x86, linux-kernel, Matjaz Hegedic

The reboot quirk for ASUS EeeBook X205TA contains a typo in
DMI_PRODUCT_NAME, improperly referring to X205TAW instead of
X205TA, which prevents the quirk from being triggered. The
model X205TAW already has a reboot quirk of its own.

This fix simply removes the inappropriate final letter W.

Signed-off-by: Matjaz Hegedic <matjaz.hegedic@gmail.com>
---
 arch/x86/kernel/reboot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c
index 4194d6f..067f981 100644
--- a/arch/x86/kernel/reboot.c
+++ b/arch/x86/kernel/reboot.c
@@ -228,7 +228,7 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
 		.ident = "ASUS EeeBook X205TA",
 		.matches = {
 			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
-			DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "X205TA"),
 		},
 	},
 	{	/* Handle problems with rebooting on ASUS EeeBook X205TAW */
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-03-10 11:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-09 13:00 [PATCH] x86/reboot/quirks: fix typo in ASUS EeeBook X205TA reboot quirk Matjaz Hegedic
2017-03-10 11:01 ` [tip:x86/urgent] x86/reboot/quirks: Fix " tip-bot for Matjaz Hegedic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox