RE: Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-07-09 Thread MyungJoo Ham
On 19. 6. 28. 오후 7:32, Arnd Bergmann wrote: > Compile-testing the new driver on platforms without CONFIG_COMMON_CLK > leads to a link error: > > drivers/devfreq/tegra20-devfreq.o: In function `tegra_devfreq_target': > tegra20-devfreq.c:(.text+0x288): undefined reference to `clk_set_min_rate' > >

Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-30 Thread Chanwoo Choi
Hi Arnd, Thanks for fixup. Reviewed-by: Chanwoo Choi Hi Myungjoo, This patch have to be merged for linux 5.3 before sending pull-request because it fixed the build error of merged patch[1] on devfreq.git. [1]

Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-28 Thread Dmitry Osipenko
28.06.2019 15:27, Arnd Bergmann пишет: > On Fri, Jun 28, 2019 at 1:05 PM Dmitry Osipenko wrote: >> 28.06.2019 14:00, Dmitry Osipenko пишет: > >>> >>> How is it possible to happen? There is a stub for clk_set_min_rate() when >>> COMMON_CLK >>> is disabled .. Could you please show the kernel's

Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-28 Thread Arnd Bergmann
On Fri, Jun 28, 2019 at 1:05 PM Dmitry Osipenko wrote: > 28.06.2019 14:00, Dmitry Osipenko пишет: > > > > How is it possible to happen? There is a stub for clk_set_min_rate() when > > COMMON_CLK > > is disabled .. Could you please show the kernel's config that causes the > > problem? > > > >

Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-28 Thread Dmitry Osipenko
28.06.2019 14:00, Dmitry Osipenko пишет: > 28.06.2019 13:32, Arnd Bergmann пишет: >> Compile-testing the new driver on platforms without CONFIG_COMMON_CLK >> leads to a link error: >> >> drivers/devfreq/tegra20-devfreq.o: In function `tegra_devfreq_target': >> tegra20-devfreq.c:(.text+0x288):

Re: [PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-28 Thread Dmitry Osipenko
28.06.2019 13:32, Arnd Bergmann пишет: > Compile-testing the new driver on platforms without CONFIG_COMMON_CLK > leads to a link error: > > drivers/devfreq/tegra20-devfreq.o: In function `tegra_devfreq_target': > tegra20-devfreq.c:(.text+0x288): undefined reference to `clk_set_min_rate' > > Add

[PATCH] devfreq: tegra20: add COMMON_CLK dependency

2019-06-28 Thread Arnd Bergmann
Compile-testing the new driver on platforms without CONFIG_COMMON_CLK leads to a link error: drivers/devfreq/tegra20-devfreq.o: In function `tegra_devfreq_target': tegra20-devfreq.c:(.text+0x288): undefined reference to `clk_set_min_rate' Add a dependency on COMMON_CLK to avoid this. Fixes: