From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2B298C001B0 for ; Sun, 9 Jul 2023 11:29:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232681AbjGIL3d (ORCPT ); Sun, 9 Jul 2023 07:29:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38824 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232713AbjGIL3c (ORCPT ); Sun, 9 Jul 2023 07:29:32 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1B90D13D for ; Sun, 9 Jul 2023 04:29:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id AC1C560B7F for ; Sun, 9 Jul 2023 11:29:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC087C433C7; Sun, 9 Jul 2023 11:29:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1688902171; bh=lnjt2UIPEtT5sRAH0neg2Jts7JYlcr+W2jXQbpBpx9o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=o9GTcX9uA9XJfv4Uh0jrCWJqsFkymGRYiUUtA5V5m15j04qXCyKpFSxXguKaEU2rJ DnvKKeqDGDG977T00W8ubl1nAE9w/tn+s6/tYDQGB6p2bNAjawxXdwSKLCRn9qjcTU YNdCa1EK/sioRGdSeXQRldVoRh0wINNLvRekfk/o= 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.3 273/431] clk: Export clk_hw_forward_rate_request() Date: Sun, 9 Jul 2023 13:13:41 +0200 Message-ID: <20230709111457.545707418@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230709111451.101012554@linuxfoundation.org> References: <20230709111451.101012554@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 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 ae07685c7588b..657b27743c4dd 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -1547,6 +1547,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