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 659281D0DD0; Wed, 2 Oct 2024 14:11:19 +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=1727878279; cv=none; b=Y1vhqPngEj3XAZDwzoSFhjsYJ035P68Xb0a/ykNuTS+xW4fP4IjrshWtcKGOvKKTVDG+92cMykCG6dc8ZXT3zdJGzn3bII020ajpCEoNs7tAz9PnA4ahVXwPWdPxlDfGZTK/gzaiDcUl+NlhlYTcLfuEEtDIkkZEfCQNqklg3Dw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727878279; c=relaxed/simple; bh=EuKSX/0kAlq6aABP0rVq+fiBnDR8mE7vYOR3FpqUY9Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=F91kDBisoFYNIZoFhoIdf62ghyxc/gr6V/F/4G6w5mxTp2QTOo5sHFHDT+rA1moJL2Lj86mpgdyHEvsX4Wu37UiZnphGHk+hRTZ4pPv8KAp8sZT9NJu7e7JQDErIvB3hPEdyMO5oAzrY+oR4VNcFJ2XaPzERziahUMFdUEago6o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YjXJJZ0y; 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="YjXJJZ0y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E1409C4CEC2; Wed, 2 Oct 2024 14:11:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727878279; bh=EuKSX/0kAlq6aABP0rVq+fiBnDR8mE7vYOR3FpqUY9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YjXJJZ0yKMCEV8hj3lUhhuaH19kSQL8M5GKY78KrZj2R1aImhtqWp1KZGqOS2eAjQ GSTRZn3pSVY5ITXEc/OrHSkS10f/9lBeD4ztZLcPFb/uSBYbbk3dMjAyqVeE/un0ix a+VOrWWydYRXxNjB2IF85Dw0+gRf4ZuEgVOfqIDI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alexander Shiyan , Dragan Simic , Heiko Stuebner , Sasha Levin Subject: [PATCH 6.10 359/634] clk: rockchip: rk3588: Fix 32k clock name for pmu_24m_32k_100m_src_p Date: Wed, 2 Oct 2024 14:57:39 +0200 Message-ID: <20241002125825.266368570@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241002125811.070689334@linuxfoundation.org> References: <20241002125811.070689334@linuxfoundation.org> User-Agent: quilt/0.67 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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexander Shiyan [ Upstream commit 0d02e8d284a45bfa8997ebe8764437b8eb6b108b ] The 32kHz input clock is named "xin32k" in the driver, so the name "32k" appears to be a typo in this case. Lets fix this. Signed-off-by: Alexander Shiyan Reviewed-by: Dragan Simic Fixes: f1c506d152ff ("clk: rockchip: add clock controller for the RK3588") Link: https://lore.kernel.org/r/20240829052820.3604-1-eagle.alexander923@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Sasha Levin --- drivers/clk/rockchip/clk-rk3588.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/rockchip/clk-rk3588.c b/drivers/clk/rockchip/clk-rk3588.c index b30279a96dc8a..3027379f2fdd1 100644 --- a/drivers/clk/rockchip/clk-rk3588.c +++ b/drivers/clk/rockchip/clk-rk3588.c @@ -526,7 +526,7 @@ PNAME(pmu_200m_100m_p) = { "clk_pmu1_200m_src", "clk_pmu1_100m_src" }; PNAME(pmu_300m_24m_p) = { "clk_300m_src", "xin24m" }; PNAME(pmu_400m_24m_p) = { "clk_400m_src", "xin24m" }; PNAME(pmu_100m_50m_24m_src_p) = { "clk_pmu1_100m_src", "clk_pmu1_50m_src", "xin24m" }; -PNAME(pmu_24m_32k_100m_src_p) = { "xin24m", "32k", "clk_pmu1_100m_src" }; +PNAME(pmu_24m_32k_100m_src_p) = { "xin24m", "xin32k", "clk_pmu1_100m_src" }; PNAME(hclk_pmu1_root_p) = { "clk_pmu1_200m_src", "clk_pmu1_100m_src", "clk_pmu1_50m_src", "xin24m" }; PNAME(hclk_pmu_cm0_root_p) = { "clk_pmu1_400m_src", "clk_pmu1_200m_src", "clk_pmu1_100m_src", "xin24m" }; PNAME(mclk_pdm0_p) = { "clk_pmu1_300m_src", "clk_pmu1_200m_src" }; -- 2.43.0