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 950DBC433EF for ; Mon, 6 Dec 2021 09:03:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239869AbhLFJHI (ORCPT ); Mon, 6 Dec 2021 04:07:08 -0500 Received: from smtp-out2.suse.de ([195.135.220.29]:48116 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230492AbhLFJHH (ORCPT ); Mon, 6 Dec 2021 04:07:07 -0500 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id BA1991FD5F; Mon, 6 Dec 2021 09:03:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1638781418; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Db3hvaH14I4JAi8dK6s9oO24viGVIenHpdjlCz1qV2c=; b=WWBVuzqdvBoVUHgcidtfL/AynLUo6gaQtWq6T3rERhoenebbxxlEqrv7xYfUNFuB8F1V06 TU19PZUObnWNbISWnIHirmzr/+3PaalNBFZzVQvHDj171lerODiX5cIeI/WzMDdXegYmbq ZWlKyY5YzIlzSfrqzAlhaUtwtx1a/f0= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1638781418; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Db3hvaH14I4JAi8dK6s9oO24viGVIenHpdjlCz1qV2c=; b=5mmRyC5/ichskG3pt4gnYX7Tm9pyZ/NT/rQqZ0Z3FqEw4ssqScsjVra5yWiyp8OV7WvYMc 68qtQY+0Mi6MsnAw== Received: from alsa1.suse.de (alsa1.suse.de [10.160.4.42]) by relay2.suse.de (Postfix) with ESMTP id B04B4A3B91; Mon, 6 Dec 2021 09:03:38 +0000 (UTC) Date: Mon, 06 Dec 2021 10:03:38 +0100 Message-ID: From: Takashi Iwai To: Samuel =?UTF-8?B?xIxhdm9q?= Cc: Dmitry Torokhov , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Takashi Iwai Subject: Re: [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA In-Reply-To: <20211204015615.232948-1-samuel@cavoj.net> References: <20211204015615.232948-1-samuel@cavoj.net> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 04 Dec 2021 02:56:16 +0100, Samuel Čavoj wrote: > > 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 Reviewed-by: Takashi Iwai thanks, Takashi > 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 >