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 56CB28F74 for ; Sun, 16 Jul 2023 20:09:49 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D0855C433C7; Sun, 16 Jul 2023 20:09:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1689538189; bh=KRQDK4WT2wKIt2eM5cqo3X7/UXawT6O51ecS9GjjopA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=12gkXSpiNRcGtBJZl0ylCJO+5kCujHzkOyX+crm9HivXrVje63qSmPy0buJxU3s10 vvgz4UAPjw0376okDZUH8LeRr4Z7CNWKsFhWFxdlSH16AtE08o/21faZZUWwKkFnkm K6SJ+K9AcnQhYMrjcgRRlUy8QMpCSgNfD4kwm5yA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Maxime Ripard , Stephen Boyd , Sasha Levin Subject: [PATCH 6.4 363/800] clk: Export clk_hw_forward_rate_request() Date: Sun, 16 Jul 2023 21:43:36 +0200 Message-ID: <20230716194957.509964971@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230716194949.099592437@linuxfoundation.org> References: <20230716194949.099592437@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Maxime Ripard [ Upstream commit ed046ac74da0b5602566073023a1519b5ae657b7 ] Commit 262ca38f4b6e ("clk: Stop forwarding clk_rate_requests to the parent") introduced the public clk_hw_forward_rate_request() function, but didn't export the symbol. Make sure it's the case. Fixes: 262ca38f4b6e ("clk: Stop forwarding clk_rate_requests to the parent") Signed-off-by: Maxime Ripard Link: https://lore.kernel.org/r/20221018-clk-range-checks-fixes-v4-1-971d5077e7d2@cerno.tech Signed-off-by: Stephen Boyd Signed-off-by: Sasha Levin --- drivers/clk/clk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 27c30a533759a..e495dd7a1eae1 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -1549,6 +1549,7 @@ void clk_hw_forward_rate_request(const struct clk_hw *hw, parent->core, req, parent_rate); } +EXPORT_SYMBOL_GPL(clk_hw_forward_rate_request); static bool clk_core_can_round(struct clk_core * const core) { -- 2.39.2