From nobody Tue Apr 7 14:36:34 2026 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.173]) (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 A7AEE3CAE78 for ; Thu, 12 Mar 2026 21:25:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773350708; cv=none; b=NwnrGvwT1Prw2Cpv1lwpNiMFG/7JMjsVscSH4glFHCC2h6f3vztVTYKZcQbsj0eicDUMt1XHtgVotdHBVtCfIzcIH8A+fL5z/IhfbXQ+b6Ua4Z4lyFhZjIjgDdxRqdBHEnhGUXjrW/BM9B+IB8ah36oosoJF7s3RJOI5JZS3S7o= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773350708; c=relaxed/simple; bh=etoSAVeC4+FfGUCh9hbQJEOFAq1ZaQsXbWntHgwFXPk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=AKnUACmWokaBC9hxj2YNG6n9zOAAL51h7FkZfH0HRTjOZ6LT/7WDc1lN6YKiS98q1FIEGSd3lBziBh+85d3UxR2OK6sQAZTYgFuNBd3x6TvRm6ga77ahXcv9892LJVGz4Utejd+PnDX/feS86Gmzuhoi/Mzb2tzlxtz2BOkIQxY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=LcWfTt0E; arc=none smtp.client-ip=95.215.58.173 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="LcWfTt0E" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1773350694; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=E/WK0PqxZWoPri8rdv9a8+9gC38bPj0ETkUmXtODS2E=; b=LcWfTt0E276Sfz2XsU+fUzHcYytm/bfVcBp1AHRVHeWi11JoZ7LKjImCJ43TSc0ZnUaqpk kZNlX2rPISBUKqG098cgGx70Qc6HfYkPQio1zBELGoYNo/kf8L3gpSTIOdp3VUh6UZ8w8i +sQGekeWxDnJMQiBOTPJDp9I41qqto4= From: Matthew Schwartz To: Denis Benato , Hans de Goede , ilpo.jarvinen@linux.intel.com Cc: platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org, Matthew Schwartz Subject: [PATCH] platform/x86: asus-nb-wmi: add DMI quirk for ASUS ROG Flow Z13-KJP GZ302EAC Date: Thu, 12 Mar 2026 14:22:46 -0700 Message-ID: <20260312212246.1608080-1-matthew.schwartz@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" 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: Denis Benato Reviewed-by: Mario Limonciello (AMD) --- 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[] =3D { .callback =3D dmi_matched, .ident =3D "ASUS ROG Z13", .matches =3D { - DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_SYS_VENDOR, "ASUS"), DMI_MATCH(DMI_PRODUCT_NAME, "ROG Flow Z13"), }, .driver_data =3D &quirk_asus_z13, --=20 2.53.0