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 C41EB3382DE; Mon, 20 Apr 2026 15:47:09 +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=1776700029; cv=none; b=UXMxrXAe4FDL7AkwAVL5H6hTjoDINoallWtxZptrtKDLpMMx6BrySKmbg/oChklDdLuE3Yyz/WnWFMAboJUXuXFXvj5u8QRxWpcOE/5/tfMINQp9vcKmBWZQEHNqbvtkwjjyvw2/zd+ZuLZZ4Gf/1rqtIgFihjDyGs9dd/62m4g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700029; c=relaxed/simple; bh=OiJklIshNJjfLer4r4mcEhWbsXV6bEs+GanoY9VXjmU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=kQ6VsbNs7PIYDQT9uO3orHjIGNW/7f/QeyVDYPsUj+/86WC/IYQR4CZof/g2a74T5EJxsfCC+YFsRX5DiUFMRlLqxa+lkLugUZBQDzddtZ7JfJuwSzYHpTQme5Qg0HjLhPwBv3B+Emk4WPUk5IKLZNsbNsI5cX2vFiMnbPGmxwo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Owp8Uavc; 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="Owp8Uavc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5848EC19425; Mon, 20 Apr 2026 15:47:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700029; bh=OiJklIshNJjfLer4r4mcEhWbsXV6bEs+GanoY9VXjmU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Owp8Uavc7Dgdw2lEg3chGfNA/nyJFxOPS55FUTon5ws3u8pO1w6ex6U/+bNu5I6tI 4ZY9kO5MIHOb53b1OLmza0ryccLPBa3GWtHCHj2d0Y3Ur89/g/R2/5biTvdCTtJSWj fPCotOd1LbZ6YltbjMylXrokhgytrY5Z8W7n+s0g= 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.19 015/220] platform/x86: asus-nb-wmi: add DMI quirk for ASUS ROG Flow Z13-KJP GZ302EAC Date: Mon, 20 Apr 2026 17:39:16 +0200 Message-ID: <20260420153934.575573792@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153934.013228280@linuxfoundation.org> References: <20260420153934.013228280@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.19-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 a38a65f5c550d..b4677c5bba5b4 100644 --- a/drivers/platform/x86/asus-nb-wmi.c +++ b/drivers/platform/x86/asus-nb-wmi.c @@ -548,7 +548,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