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 ED24126B2AC; Tue, 8 Apr 2025 12:16:28 +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=1744114589; cv=none; b=jxQDCEKjxBOj/A4FBnkfKbKRAJ98vVJ6RhQXels7+l16bCs8nRlPTWdDfVRREP+lL9gWKvjO27n3HsKugsafCDjgSmHZCbuy5HuKFQqxsPcWLrN9amHFoL4WqGrubhyA0AjUveQhFSKmgrjqXAYu2dxk1tNV/UBFnm/ABEOHihs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744114589; c=relaxed/simple; bh=MWXr5AYjIJRPXPsRPsHOAqgpTrsJFx6YMU2wscYsLX4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KKxMZJ0ifNgDhlXdAmthYbI1U3AXEAU/L6p+gPgx87mZutzl0cg+y0NFskSf86H+HzSbKxEG7gwF6u5r0PUsl2J0qjFnRH01pfSX8PlDk1+J1vLimMvo6J7bimU+Blb6FxQw2OUB8Sr2uUERahUgeVhqMGayxs4tuIDq4ZfWohQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pSyrpfnw; 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="pSyrpfnw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C489C4CEE7; Tue, 8 Apr 2025 12:16:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744114588; bh=MWXr5AYjIJRPXPsRPsHOAqgpTrsJFx6YMU2wscYsLX4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pSyrpfnw5Cmh9ekzaKsvSPcF5t2VuNm420hEHCO1cyhohwjWjL4zOnNHoBStD0v+U moA/b0JZ+W2NdoO7oh7+EmQZoyyt3kHu6HvKFZv61zpIaAEv2tzB9ti40O4ceiyDT7 uFs1o4DJO9axopEQ+mqjiYivxAtO1kMxG39GS8CI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Geis , Dragan Simic , Heiko Stuebner , Sasha Levin Subject: [PATCH 6.13 161/499] clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent Date: Tue, 8 Apr 2025 12:46:13 +0200 Message-ID: <20250408104855.196260293@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104851.256868745@linuxfoundation.org> References: <20250408104851.256868745@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-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Geis [ Upstream commit a9e60f1ffe1ca57d6af6a2573e2f950e76efbf5b ] Correct the clk_ref_usb3otg parent to fix clock control for the usb3 controller on rk3328. Verified against the rk3328 trm, the rk3228h trm, and the rk3328 usb3 phy clock map. Fixes: fe3511ad8a1c ("clk: rockchip: add clock controller for rk3328") Signed-off-by: Peter Geis Reviewed-by: Dragan Simic Link: https://lore.kernel.org/r/20250115012628.1035928-2-pgwipeout@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Sasha Levin --- drivers/clk/rockchip/clk-rk3328.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/rockchip/clk-rk3328.c b/drivers/clk/rockchip/clk-rk3328.c index 3bb87b27b662d..cf60fcf2fa5cd 100644 --- a/drivers/clk/rockchip/clk-rk3328.c +++ b/drivers/clk/rockchip/clk-rk3328.c @@ -201,7 +201,7 @@ PNAME(mux_aclk_peri_pre_p) = { "cpll_peri", "gpll_peri", "hdmiphy_peri" }; PNAME(mux_ref_usb3otg_src_p) = { "xin24m", - "clk_usb3otg_ref" }; + "clk_ref_usb3otg_src" }; PNAME(mux_xin24m_32k_p) = { "xin24m", "clk_rtc32k" }; PNAME(mux_mac2io_src_p) = { "clk_mac2io_src", -- 2.39.5