Skip to content

Commit bba8376

Browse files
hmatjazKAGA-KOKO
authored andcommitted
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: 90b28de ("x86/reboot/quirks: Add ASUS EeeBook X205TA reboot quirk") Signed-off-by: Matjaz Hegedic <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent ea6200e commit bba8376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/kernel/reboot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
228228
.ident = "ASUS EeeBook X205TA",
229229
.matches = {
230230
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
231-
DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
231+
DMI_MATCH(DMI_PRODUCT_NAME, "X205TA"),
232232
},
233233
},
234234
{ /* Handle problems with rebooting on ASUS EeeBook X205TAW */

0 commit comments

Comments
 (0)