Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934788AbdCJLEX (ORCPT ); Fri, 10 Mar 2017 06:04:23 -0500 Received: from terminus.zytor.com ([65.50.211.136]:51694 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934236AbdCJLET (ORCPT ); Fri, 10 Mar 2017 06:04:19 -0500 Date: Fri, 10 Mar 2017 03:01:30 -0800 From: tip-bot for Matjaz Hegedic Message-ID: Cc: matjaz.hegedic@gmail.com, hpa@zytor.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, mingo@kernel.org Reply-To: matjaz.hegedic@gmail.com, hpa@zytor.com, tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <1489064417-7445-1-git-send-email-matjaz.hegedic@gmail.com> References: <1489064417-7445-1-git-send-email-matjaz.hegedic@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/reboot/quirks: Fix typo in ASUS EeeBook X205TA reboot quirk Git-Commit-ID: bba8376aea1dcbbe22bbda118c52abee317c7609 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1554 Lines: 38 Commit-ID: bba8376aea1dcbbe22bbda118c52abee317c7609 Gitweb: http://git.kernel.org/tip/bba8376aea1dcbbe22bbda118c52abee317c7609 Author: Matjaz Hegedic AuthorDate: Thu, 9 Mar 2017 14:00:17 +0100 Committer: Thomas Gleixner CommitDate: Fri, 10 Mar 2017 11:58:33 +0100 x86/reboot/quirks: Fix typo in ASUS EeeBook X205TA reboot quirk 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. Fixes: 90b28ded88dd ("x86/reboot/quirks: Add ASUS EeeBook X205TA reboot quirk") Signed-off-by: Matjaz Hegedic Link: http://lkml.kernel.org/r/1489064417-7445-1-git-send-email-matjaz.hegedic@gmail.com Signed-off-by: Thomas Gleixner --- 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 */