Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B0934C433FE for ; Sat, 4 Dec 2021 01:58:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239764AbhLDCCS (ORCPT ); Fri, 3 Dec 2021 21:02:18 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40116 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231452AbhLDCCR (ORCPT ); Fri, 3 Dec 2021 21:02:17 -0500 X-Greylist: delayed 99 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 03 Dec 2021 17:58:53 PST Received: from lithium.sammserver.com (lithium.sammserver.com [IPv6:2a01:4f8:c2c:b7df::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 334EFC061751; Fri, 3 Dec 2021 17:58:53 -0800 (PST) Received: from mail.sammserver.com (sammserver.wg [10.32.40.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (Client did not present a certificate) by lithium.sammserver.com (Postfix) with ESMTPS id 0AD253115D1B; Sat, 4 Dec 2021 02:57:12 +0100 (CET) Received: from fastboi.localdomain (fastboi.wg [10.32.40.5]) by mail.sammserver.com (Postfix) with ESMTP id 3C0CC24BCB; Sat, 4 Dec 2021 02:57:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cavoj.net; s=email; t=1638583031; bh=/6RHzQWwBMGtX+Nq6RczjslOL0hRjHRVrC5ia7u+4Cs=; h=From:To:Cc:Subject:Date:From; b=klGXEIw9q1NYcqfT1zsYF7TmVbRKHZhoyu7k4FiaWNQvUuGk11bKToPgygILFYJ2P F3cU4cC5dsGlxSTHW9SUBAYHRXSV7i5RiSClSo2z2B+WTDQRWaD2cMqC5nT8V1bWJU 2IxW1jxxNRXlIN1uWppkb8a/Z2QglBVepxjlwv6g= Received: by fastboi.localdomain (Postfix, from userid 1000) id 1DC1614233A9; Sat, 4 Dec 2021 02:57:11 +0100 (CET) From: =?UTF-8?q?Samuel=20=C4=8Cavoj?= To: Dmitry Torokhov Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?q?Samuel=20=C4=8Cavoj?= , Takashi Iwai Subject: [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA Date: Sat, 4 Dec 2021 02:56:16 +0100 Message-Id: <20211204015615.232948-1-samuel@cavoj.net> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The ASUS UM325UA suffers from the same issue as the ASUS UX425UA, which is a very similar laptop. The i8042 device is not usable immediately after boot and fails to initialize, requiring a deferred retry. Enable the deferred probe quirk for the UM325UA. BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1190256 Signed-off-by: Samuel Čavoj Cc: Takashi Iwai Link: https://lore.kernel.org/r/20211117063757.11380-1-tiwai@suse.de --- drivers/input/serio/i8042-x86ia64io.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 1acc7c844929..148a7c5fd0e2 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -1003,6 +1003,13 @@ static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = { DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"), }, }, + { + /* ASUS ZenBook UM325UA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"), + }, + }, { } }; -- 2.34.1