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 A276920CCD8; Tue, 8 Apr 2025 11:57:58 +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=1744113478; cv=none; b=PFAgG/4SdbW3iPZn064MdkrQ4PcA/vV9cD62oZAZRgMa1W3rzguAuNs7vdNRc+mSPhzb7yK5yMurgpUZlXyPNSujnhbf6ddTUDv+MKnZ5Q7xJimnpPw/tfcSSe+R718IrFTQjSoQQVPq5ls0GCfQzOr9NZRIkadp8G+yISatEQ8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744113478; c=relaxed/simple; bh=bVdaACvswvl79y3Fucc6F2te0r6zki4uMzeQ3s3HtfI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=JxcLBEu2vxiDu9rmyZAYyevo7+MrAKZAYUvhaY70yOgdt5PdKnjdI8/qXm0ClHzd3IDBsx77J62HZERi4jadpB3Jd2m1JNa5vNJucoHtupBe56pIP4dgEAwRbp+SkZnB4HssxCh2GCpADOgStSrGiK8CKjr55bKdHpRzu3jCUvg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ImwiMlhN; 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="ImwiMlhN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 21C60C4CEEB; Tue, 8 Apr 2025 11:57:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744113478; bh=bVdaACvswvl79y3Fucc6F2te0r6zki4uMzeQ3s3HtfI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ImwiMlhN36d16Lmcbq8glvMbN1pk1XBkLqmSe9znemRLlFr/FYFE25M5lqBgVOl0v KbdyjZZi/84IVjpvqmnXI44iRn3TluQBBcUyG48bGp1jaYpAvyaXcSAZ7TSSTuH1hs 4K/bys01PIiOvRMHUVftuoiHNLdRH+gXKs9ICQYU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Panchenko , Hans de Goede , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.6 174/268] platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet Date: Tue, 8 Apr 2025 12:49:45 +0200 Message-ID: <20250408104833.236542591@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104828.499967190@linuxfoundation.org> References: <20250408104828.499967190@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Panchenko [ Upstream commit 2738d06fb4f01145b24c542fb06de538ffc56430 ] Volume buttons on Microsoft Surface Go 4 tablet didn't send any events. Add Surface Go 4 DMI match to button_array_table to fix this. Signed-off-by: Dmitry Panchenko Reviewed-by: Hans de Goede Link: https://lore.kernel.org/r/20250220154016.3620917-1-dmitry@d-systems.ee Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/intel/hid.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 7457ca2b27a60..36209997ba988 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -128,6 +128,13 @@ static const struct dmi_system_id button_array_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go 3"), }, }, + { + .ident = "Microsoft Surface Go 4", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go 4"), + }, + }, { } }; -- 2.39.5