Re: [PATCH] clk: export clk_bulk_prepare

2017-10-05 Thread Arnd Bergmann
On Thu, Oct 5, 2017 at 7:22 PM, Stephen Boyd wrote: > On 10/05, Arnd Bergmann wrote: >> The ARM allmodconfig build fails in linux-next, since one > > Which version of linux-next? I merged a patch for this already > and pushed it out a day or two ago. I used the latest linux-next, which unfortunat

Re: [PATCH] clk: export clk_bulk_prepare

2017-10-05 Thread Stephen Boyd
On 10/05, Arnd Bergmann wrote: > The ARM allmodconfig build fails in linux-next, since one Which version of linux-next? I merged a patch for this already and pushed it out a day or two ago. > clk interface was accidentally never exported but is now > used by an mmc driver: > -- Qualcomm Innova

[PATCH] clk: export clk_bulk_prepare

2017-10-05 Thread Arnd Bergmann
The ARM allmodconfig build fails in linux-next, since one clk interface was accidentally never exported but is now used by an mmc driver: ERROR: "clk_bulk_prepare" [drivers/mmc/host/sdhci-msm.ko] undefined! This exports it as well. Fixes: d8034e3379a8 ("mmc: sdhci-msm: Utilize bulk clock API") F

Re: [PATCH] clk: Export clk_bulk_prepare()

2017-09-29 Thread Stephen Boyd
On 09/22, 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 > --- Applied to clk-fixes -- Q

Re: [PATCH] clk: Export clk_bulk_prepare()

2017-09-26 Thread Ulf Hansson
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 l

[PATCH] clk: Export clk_bulk_prepare()

2017-09-22 Thread Bjorn Andersson
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 --- drivers/clk/clk-bulk.c | 1 + 1 file changed, 1 insertion(+) diff --git a