Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1032807AbdIZX5d (ORCPT ); Tue, 26 Sep 2017 19:57:33 -0400 Received: from mail-it0-f47.google.com ([209.85.214.47]:54970 "EHLO mail-it0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966076AbdIZX5a (ORCPT ); Tue, 26 Sep 2017 19:57:30 -0400 X-Google-Smtp-Source: AOwi7QAOCkhA/fMfwfdZEFZ1kp+oDg7CLVxuoS2gv4DxVmIezAwTWJfPuyIzBcH1/0UvbYO40lbajgXLVfbuc+h46dY= MIME-Version: 1.0 In-Reply-To: <20170923050029.19013-1-bjorn.andersson@linaro.org> References: <20170923050029.19013-1-bjorn.andersson@linaro.org> From: Ulf Hansson Date: Wed, 27 Sep 2017 01:57:29 +0200 Message-ID: Subject: Re: [PATCH] clk: Export clk_bulk_prepare() To: Bjorn Andersson Cc: Michael Turquette , Stephen Boyd , linux-clk , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 896 Lines: 35 On 23 September 2017 at 07:00, Bjorn Andersson wrote: > Allow clk_bulk_prepare() to be referenced by kernel modules by adding > the missing EXPORT_SYMBOL_GPL(). > > Fixes: 266e4e9d9150 ("clk: add clk_bulk_get accessories") > Reported-by: Ulf Hansson > Signed-off-by: Bjorn Andersson If not too late, Reviewed-by: Ulf Hansson Kind regards Uffe > --- > drivers/clk/clk-bulk.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/clk/clk-bulk.c b/drivers/clk/clk-bulk.c > index c834f5abfc49..4c10456f8a32 100644 > --- a/drivers/clk/clk-bulk.c > +++ b/drivers/clk/clk-bulk.c > @@ -105,6 +105,7 @@ int __must_check clk_bulk_prepare(int num_clks, > > return ret; > } > +EXPORT_SYMBOL_GPL(clk_bulk_prepare); > > #endif /* CONFIG_HAVE_CLK_PREPARE */ > > -- > 2.12.0 >