From patchwork Sat Jun 2 07:21:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 10444601 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id BB42560234 for ; Sat, 2 Jun 2018 07:21:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 996A32893F for ; Sat, 2 Jun 2018 07:21:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8A3E828995; Sat, 2 Jun 2018 07:21:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 35B032893F for ; Sat, 2 Jun 2018 07:21:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750776AbeFBHVf (ORCPT ); Sat, 2 Jun 2018 03:21:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:55832 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750750AbeFBHVe (ORCPT ); Sat, 2 Jun 2018 03:21:34 -0400 Received: from swboyd.mtv.corp.google.com (unknown [104.132.1.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id F1E9420876; Sat, 2 Jun 2018 07:21:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1527924094; bh=xaz9frKMhvS6/7WrRD64GvaQDxYcue/JpYrr1BeFta8=; h=From:To:Cc:Subject:Date:From; b=eWTPnMRD0JqlF7jg/sJUuEzWd3/SLTrNRD8qQO/pZtbW8OT04JsO5g0p7dlN3D49m qAnYM5zCblrrvnpMEJh3CF08JhInv+m+wVhqmCnLW+5aZIrAOgvF/0t407va3pe0I6 GyC+EuovjHlcPonNffgDGmL+2Vq1TIql1fYWaV4s= From: sboyd@kernel.org To: Michael Turquette , Stephen Boyd Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org, Amit Nischal Subject: [PATCH] clk: qcom: Export clk_fabia_pll_configure() Date: Sat, 2 Jun 2018 00:21:32 -0700 Message-Id: <20180602072132.222257-1-sboyd@kernel.org> X-Mailer: git-send-email 2.17.1.1185.g55be947832-goog Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Stephen Boyd This is used by the video clk driver on sdm845 and that's a module. Export it to prevent module build failures. Cc: Amit Nischal Signed-off-by: Stephen Boyd --- drivers/clk/qcom/clk-alpha-pll.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/qcom/clk-alpha-pll.c b/drivers/clk/qcom/clk-alpha-pll.c index 9722b701fbdb..3c49a60072f1 100644 --- a/drivers/clk/qcom/clk-alpha-pll.c +++ b/drivers/clk/qcom/clk-alpha-pll.c @@ -885,6 +885,7 @@ void clk_fabia_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap, regmap_update_bits(regmap, PLL_MODE(pll), PLL_RESET_N, PLL_RESET_N); } +EXPORT_SYMBOL_GPL(clk_fabia_pll_configure); static int alpha_pll_fabia_enable(struct clk_hw *hw) {