From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D25B8343D9E; Mon, 20 Apr 2026 16:06:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776701192; cv=none; b=Q7TV0kuPgRJGBlhLNtrWNOeAeglBTugtV4U77rUf1EBstP1fiT9unaHu+2LA2J4Go4WLhkdrsoyc3C969bfzIp7fZrtvWiKtObirVO/87Bf2SVaY5qhjrILduw2pVLBGJ5SXo888A6g2MYkHS3dn7Z93GU7bJcChiHQX/uH8nAM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776701192; c=relaxed/simple; bh=uhwmqbadA4mYxavaX+orjiBoJey9ibMJfXG0WNFG0Rc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Y90QcqDYU9gBvtPbQEMDpyFWK59q6oHxITGlc2QXwvelsfC1THCE+UAIeN5mSErC4kW5gryMaQ60szsgH8OvT0aFaYE8tsX5TKqj/SEoXL0BfiU4QK0FFwNmesUGDcYapN2oXHRJVXN+bvX3alTMHAqrjIVxS8H6mCf+mzbTcz0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=T5qRgEQs; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="T5qRgEQs" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6A368C19425; Mon, 20 Apr 2026 16:06:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776701192; bh=uhwmqbadA4mYxavaX+orjiBoJey9ibMJfXG0WNFG0Rc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=T5qRgEQsEcHCgUQjNacOFq8SqW+I9nCVFd9m4NABLJ+ywy27CcNStd7RanMnAKwiO cwa08vdtS/sfkcNLi7R6nvluabtszNZMjWrcao4wWdP48k+bApktj0mPS8pkldghjE t4ETRJ4Qg/rsPoK1omNrR2JKdIDZqB8EpCDvUniU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Matthew Schwartz , "Mario Limonciello (AMD)" , Denis Benato , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.12 011/162] platform/x86: asus-nb-wmi: add DMI quirk for ASUS ROG Flow Z13-KJP GZ302EAC Date: Mon, 20 Apr 2026 17:40:43 +0200 Message-ID: <20260420153927.426347730@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153927.006696811@linuxfoundation.org> References: <20260420153927.006696811@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Matthew Schwartz [ Upstream commit 0198d2743207d67f995cd6df89e267e1b9f5e1f1 ] The ASUS ROG Flow Z13-KJP GZ302EAC model uses sys_vendor name ASUS rather than ASUSTeK COMPUTER INC., but it needs the same folio quirk as the other ROG Flow Z13. To keep things simple, just match on sys_vendor ASUS since it covers both. Signed-off-by: Matthew Schwartz Reviewed-by: Mario Limonciello (AMD) Reviewed-by: Denis Benato Link: https://patch.msgid.link/20260312212246.1608080-1-matthew.schwartz@linux.dev Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/asus-nb-wmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c index 1955495ea95f4..10bdb1a431819 100644 --- a/drivers/platform/x86/asus-nb-wmi.c +++ b/drivers/platform/x86/asus-nb-wmi.c @@ -547,7 +547,7 @@ static const struct dmi_system_id asus_quirks[] = { .callback = dmi_matched, .ident = "ASUS ROG Z13", .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_SYS_VENDOR, "ASUS"), DMI_MATCH(DMI_PRODUCT_NAME, "ROG Flow Z13"), }, .driver_data = &quirk_asus_z13, -- 2.53.0