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 C51EB3F82F7; Sat, 28 Feb 2026 17:42:49 +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=1772300569; cv=none; b=PpA+36fC/LimtZDKkRZGEFiv9RCPiN7NKD1jSpLjFXpq4rVbRTC4LTZ1uGSl9PMNldDU02u76OoSWXfyyTvux8bbI4vDJ+vWId+8MhFkQZhYIr2TMUIbY2tCPx3Avm12N2jg+w8QBmvR9Tq/5aX31vIgn/tOzXvd8Vvp0hSH+6s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300569; c=relaxed/simple; bh=sERlK4cG0sQy2fgQwMEdNxFqpS9791B3HJ5q/wS0nV4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DfIlwefDR0vqty0Tjwaa5T6qe0sOAqKo3bi9pkQBbbBbbeLmqMIBIOMDo+pCgNe65HhCPYwiYhrLCDu+4uQphrmRt3/uxg5RSmuIviRUeKfQa9WogPpCoRTZuWmyQ4WuV7QTC64ztFrOcAXsSbWjb/nR8074z3+P0yJ1MI/dDQ4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QqodeeXY; 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="QqodeeXY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F2D95C116D0; Sat, 28 Feb 2026 17:42:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300569; bh=sERlK4cG0sQy2fgQwMEdNxFqpS9791B3HJ5q/wS0nV4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QqodeeXYwLV+BHzvZvtaq0VNc6+y9fzVYjZB1QyMcri6v09mYHS+MxM3mlGp+b6Q/ PF+4oF0M6ueo2mErilhRiWeYejb9J89qYcJ29HkeHUJ+c2gm69CgzyGsqBXJIQGBmq bc1Bx1GF+GABXykC5W0nwx9KKm3JfUosXQwg4mQOI6qWknSxVfmjG1FOG4stpt9dMK AP7NXznKaP7nrAJsoSA5o+x3kSpaZ/avYd61smLUKfysRw92phWoiuK810iYR3eOsJ PcgU2n/idWio67V7ljRpr3FbLWKoIkrdRQ9HIZJXAXYPj5AniDCrwaNAaDgf17FEwI 7CCywbN8gDXAw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Janne Grunau , Stephen Boyd , Neal Gompa , Sasha Levin Subject: [PATCH 6.19 610/844] clk: clk-apple-nco: Add "apple,t8103-nco" compatible Date: Sat, 28 Feb 2026 12:28:43 -0500 Message-ID: <20260228173244.1509663-611-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: Janne Grunau [ Upstream commit ef9b3b4dbe767e4ac642a88dc0507927ac545047 ] After discussion with the devicetree maintainers we agreed to not extend lists with the generic compatible "apple,nco" anymore [1]. Use "apple,t8103-nco" as base compatible as it is the SoC the driver and bindings were written for. [1]: https://lore.kernel.org/asahi/12ab93b7-1fc2-4ce0-926e-c8141cfe81bf@kernel.org/ Fixes: 6641057d5dba ("clk: clk-apple-nco: Add driver for Apple NCO") Cc: stable@vger.kernel.org Acked-by: Stephen Boyd Reviewed-by: Neal Gompa Signed-off-by: Janne Grunau Signed-off-by: Stephen Boyd Signed-off-by: Sasha Levin --- drivers/clk/clk-apple-nco.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/clk-apple-nco.c b/drivers/clk/clk-apple-nco.c index d3ced4a0f029e..434c067968bbc 100644 --- a/drivers/clk/clk-apple-nco.c +++ b/drivers/clk/clk-apple-nco.c @@ -320,6 +320,7 @@ static int applnco_probe(struct platform_device *pdev) } static const struct of_device_id applnco_ids[] = { + { .compatible = "apple,t8103-nco" }, { .compatible = "apple,nco" }, { } }; -- 2.51.0