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 10343A94A; Tue, 8 Apr 2025 12:06: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=1744114018; cv=none; b=bmjtGr2X5CZgabchblbNtRTX+zbXm0pL0agRTPfAU3itstOrm0wjnr/2B4uWdEXkpy6AiJi10+jNXVqMhWsqG2XRgGA92kMIa5YFEej/AGfvJq/sKetoARTPygKTTJOeWLjTukWKUsz5dd4etH/AKIqwM11ZDIXRiZNLa9WmTO0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744114018; c=relaxed/simple; bh=nCDwrQ2i6Pa+t11yaVzIIjD2taESw3G1MAAfdhrpnP8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=edjw+8FyqCfblmWUV0NeX/s8U6DqIfqGyJpuapg4Jfod2Q1fBcjNb0KOOQFVVeJrc+8F9M9iqk3Lj90LS7psaavYlosrcD5ba18H3wnONi/ABveAec8v0bFzJqOVpi6qKO6G28236MKBo0wRgv9hjFR2Tab+CV18ES6qLhYpeA8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UMQcBCd/; 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="UMQcBCd/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7EA06C4CEE5; Tue, 8 Apr 2025 12:06:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744114017; bh=nCDwrQ2i6Pa+t11yaVzIIjD2taESw3G1MAAfdhrpnP8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UMQcBCd/SDDPUZkxq//R8LkKUrg0ex+qRVoeOlMW6EeXZfSBpt9+tSrQxaUS7p2Or yBqzuSnsOtiDl4oFh+dgL3qJMv7c+eT2HRJFkeeU2tMqTYDjjcnue95inaEIYQN8h6 LS1TWDoWxykQXKgttUc7LiriW5pZaG6vbhXQa1mQ= 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 5.4 105/154] clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent Date: Tue, 8 Apr 2025 12:50:46 +0200 Message-ID: <20250408104818.698592801@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104815.295196624@linuxfoundation.org> References: <20250408104815.295196624@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 5.4-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 c186a1985bf4e..e9b471a623b55 100644 --- a/drivers/clk/rockchip/clk-rk3328.c +++ b/drivers/clk/rockchip/clk-rk3328.c @@ -200,7 +200,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