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 AB3AA37AA7E; Mon, 9 Feb 2026 14:29:41 +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=1770647381; cv=none; b=rCMjxmiylO8tI/LSUuuNuPgUbdvsLOuHHMDYxYHPW4UgFLP8o6eGEUwpNXN4FQqbBjOdJAqDV8mRIOvZeaVKxt6j9RLZRyPhwSt5NHcaRG8sEnzzy5i5ENmItSgQ21ZUWYU5c7lXDF18tZKnwun2EYREpwGRZ7NEQshcb9RbVPQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770647381; c=relaxed/simple; bh=lDmXonZFeq1cifyPxROLkNZiT/yJ5rCZ7qcE77hYO0w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LjuvlovSW/bDW7pHiLGZMLXeR987cyfZEisJmjCwYJRwaxMkaXsVq747UcMbdlFhWgh8S/2lm77C02FnLRUSyUqFFf24Pnvl2PaFC3O9idkjyyJxCtWofYEyTK3N6UlJfJIRI68+Jd4FmqVzcRuwpB63SDMSFTD0LPyIIJxKD00= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=bKD6X8h7; 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="bKD6X8h7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3D95C116C6; Mon, 9 Feb 2026 14:29:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770647381; bh=lDmXonZFeq1cifyPxROLkNZiT/yJ5rCZ7qcE77hYO0w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bKD6X8h7aZ0Te788K7u8+ACA18zzQHb5d73fnmHfKYSz9opNNdltD03Ekjqbdh38o oL/Hown7oejHm13CqLdC9T79rGyTaV9NXd7kVWqUCfEBcNQTpyOck+Vmg6p46Znfr/ mEuAcnJkMmP7FOUnccG2HKre/ENiSKOaSuf29GGY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dennis Marttinen , Jiri Kosina , Sasha Levin Subject: [PATCH 6.18 082/175] HID: logitech: add HID++ support for Logitech MX Anywhere 3S Date: Mon, 9 Feb 2026 15:22:35 +0100 Message-ID: <20260209142323.390421013@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260209142320.474120190@linuxfoundation.org> References: <20260209142320.474120190@linuxfoundation.org> User-Agent: quilt/0.69 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-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dennis Marttinen [ Upstream commit d7f6629bffdcb962d383ef8c9a30afef81e997fe ] I've acquired a Logitech MX Anywhere 3S mouse, which supports HID++ over Bluetooth. Adding its PID 0xb037 to the allowlist enables the additional features, such as high-resolution scrolling. Tested working across multiple machines, with a mix of Intel and Mediatek Bluetooth chips. [jkosina@suse.com: standardize shortlog] Signed-off-by: Dennis Marttinen Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/hid-logitech-hidpp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index a88f2e5f791c6..9b612f62d0fba 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -4661,6 +4661,8 @@ static const struct hid_device_id hidpp_devices[] = { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb025) }, { /* MX Master 3S mouse over Bluetooth */ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb034) }, + { /* MX Anywhere 3S mouse over Bluetooth */ + HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb037) }, { /* MX Anywhere 3SB mouse over Bluetooth */ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb038) }, {} -- 2.51.0