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 4FD66373149; Sat, 28 Feb 2026 17:35:47 +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=1772300147; cv=none; b=bCI2YUor5pXvwC9Fa+RqcmpGX6Hqp4wy4EXtZEPmxaoBF5MQhyLUmKj/SxoVbk/VoD+g5Xgb8bdozqbp1/JlrvZNhLCR+bohMu8eUVcFtGQ1iPOjQqfu17JWZ7fIONDNaGNGUOvjqp6gV8tTCzJg0WYmu259u238GKWrx7VUxxM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300147; c=relaxed/simple; bh=wdudqbYngq88C0TzinB/h0Ifxxl/S8VyroMgpAofPbA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=TGC24WDC0M51SeWi2lYEBqrwQBcAsjm9knEX3wPswx0tiqZyeNmjdQzg+8KN0FJ7gYJdkVhjw3aXBUeO2QLdwI+iswFKCP2rWpsU0pugvY1oD8t+9axGPD42Hya9fMJBEpkkH/W8ItWTkzOcE+Hl6R+cbL0nkkD9kzr129PPo08= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HxfO8uVi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HxfO8uVi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 93FAFC19423; Sat, 28 Feb 2026 17:35:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300147; bh=wdudqbYngq88C0TzinB/h0Ifxxl/S8VyroMgpAofPbA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HxfO8uVi2iTHW5aDjiCxGS/NpH+7AEqSzq4XT92+yHAugrtAz8yLwZwPeq+AtMnQd AgePOv84CMnm1OsN5lWDBGKW/Zz94e8b9Ux1ZdnAC3Z9326eOlQqgNga8s64glvKkF h3jv/JmmnDu+CYNubdpbizNl7tfC5CZ4pmbogPW51cnpL7mCg/C08oUqnMUhzARVG8 UySPczB3fyxeFRoYDBfnGiUPm03wiyvl970TzUZk8n396oVThkDEo2VtcvbVX0rYnW 7B3THiWdjyKtV3cHuLZfuXw/1JB2xNPKvBciQqCOqPPCKgC71rNvnU6/bPmU/9zqZV CXa/rYxyFCLSg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Joey Bednar , Jiri Kosina , Sasha Levin Subject: [PATCH 6.19 165/844] HID: apple: Add "SONiX KN85 Keyboard" to the list of non-apple keyboards Date: Sat, 28 Feb 2026 12:21:18 -0500 Message-ID: <20260228173244.1509663-166-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Joey Bednar [ Upstream commit 7273acfd0aef106093a8ffa3b4973eb70e5a3799 ] The SoNiX KN85 keyboard identifies as the "Apple, Inc. Aluminium Keyboard" and is not recognized as a non-apple keyboard. Adding "SoNiX KN85 Keyboard" to the list of non-apple keyboards fixes the function keys. Signed-off-by: Joey Bednar Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/hid-apple.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index 57da4f86a9fa7..233e367cce1d1 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c @@ -354,6 +354,7 @@ static const struct apple_key_translation swapped_fn_leftctrl_keys[] = { }; static const struct apple_non_apple_keyboard non_apple_keyboards[] = { + { "SONiX KN85 Keyboard" }, { "SONiX USB DEVICE" }, { "SONiX AK870 PRO" }, { "Keychron" }, -- 2.51.0