* [GIT PULL] clk/samsung updates for v4.4
@ 2015-10-02 9:51 Sylwester Nawrocki
2015-10-02 18:37 ` Stephen Boyd
0 siblings, 1 reply; 3+ messages in thread
From: Sylwester Nawrocki @ 2015-10-02 9:51 UTC (permalink / raw)
To: Mike Turquette, Stephen Boyd; +Cc: linux-clk, linux-samsung-soc
The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
are available in the git repository at:
git://linuxtv.org/snawrocki/samsung.git tags/clk-samsung-4.4
for you to fetch changes up to 7993b3ebec979b23c2d7425959c9d232c452498b:
clk: samsung: exynos7: Add required clock tree for UFS (2015-09-15 11:18:15 +0200)
----------------------------------------------------------------
Fixes, improvements and addition of some missing features
of the exynos7 clock controller driver.
----------------------------------------------------------------
Alim Akhtar (16):
clk: samsung: exynos7: Fix CMU TOPC block clock
clk: samsung: exynos7: Fix CMU TOP1 block
clk: samsung: exynos7: Correct nr_clk_ids for fsys0
clk: samsung: exynos7: Correct nr_clk_ids for fsys1
clk: samsung: exynos7: Change the CMU_TOPC block clock names
clk: samsung: exynos7: Adds missing clocks gates of CMU_TOPC
clk: samsung: exynos7: Correct CMU_TOP0 clocks names
clk: samsung: exynos7: Correct CMU_TOP1 clocks names
clk: samsung: exynos7: Correct CMU_CCORE clocks names
clk: samsung: exynos7: Correct CMU_PERIC0 clocks names
clk: samsung: exynos7: Correct CMU_PERIC1 clocks names
clk: samsung: exynos7: Correct CMU_PERIS clocks names
clk: samsung: exynos7: Correct CMU_FSYS0 clocks names
clk: samsung: exynos7: Correct CMU_FSYS1 clocks names
clk: samsung: exynos7: Add missing fixed_clks to cmu_info
clk: samsung: exynos7: Add required clock tree for UFS
drivers/clk/samsung/clk-exynos7.c | 465 +++++++++++++++++++++----------
include/dt-bindings/clock/exynos7-clk.h | 43 ++-
2 files changed, 357 insertions(+), 151 deletions(-)
--
Regards,
Sylwester
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [GIT PULL] clk/samsung updates for v4.4 2015-10-02 9:51 [GIT PULL] clk/samsung updates for v4.4 Sylwester Nawrocki @ 2015-10-02 18:37 ` Stephen Boyd 2015-10-06 10:18 ` Sylwester Nawrocki 0 siblings, 1 reply; 3+ messages in thread From: Stephen Boyd @ 2015-10-02 18:37 UTC (permalink / raw) To: Sylwester Nawrocki; +Cc: Mike Turquette, linux-clk, linux-samsung-soc On 10/02, Sylwester Nawrocki wrote: > > The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f: > > Linux 4.3-rc1 (2015-09-12 16:35:56 -0700) > > are available in the git repository at: > > git://linuxtv.org/snawrocki/samsung.git tags/clk-samsung-4.4 > > for you to fetch changes up to 7993b3ebec979b23c2d7425959c9d232c452498b: > > clk: samsung: exynos7: Add required clock tree for UFS (2015-09-15 11:18:15 +0200) > Thanks, pulled. I put this patch on top though. -----8<----- From: Stephen Boyd <sboyd@codeaurora.org> Subject: [PATCH] clk: samsung: exynos7: Staticize file scope symbols drivers/clk/samsung/clk-exynos7.c:896:33: warning: symbol 'fixed_rate_clks_fsys0' was not declared. Should it be static? drivers/clk/samsung/clk-exynos7.c:1010:33: warning: symbol 'fixed_rate_clks_fsys1' was not declared. Should it be static? Cc: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> --- drivers/clk/samsung/clk-exynos7.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/samsung/clk-exynos7.c b/drivers/clk/samsung/clk-exynos7.c index 924215b219da..55f8e2e24ab8 100644 --- a/drivers/clk/samsung/clk-exynos7.c +++ b/drivers/clk/samsung/clk-exynos7.c @@ -893,7 +893,7 @@ PNAME(mout_phyclk_usbdrd300_udrd30_pipe_pclk_user_p) = { "fin_pll", "phyclk_usbdrd300_udrd30_pipe_pclk" }; /* fixed rate clocks used in the FSYS0 block */ -struct samsung_fixed_rate_clock fixed_rate_clks_fsys0[] __initdata = { +static struct samsung_fixed_rate_clock fixed_rate_clks_fsys0[] __initdata = { FRATE(0, "phyclk_usbdrd300_udrd30_phyclock", NULL, CLK_IS_ROOT, 60000000), FRATE(0, "phyclk_usbdrd300_udrd30_pipe_pclk", NULL, @@ -1007,7 +1007,7 @@ PNAME(mout_phyclk_ufs20_rx0_user_p) = { "fin_pll", "phyclk_ufs20_rx0_symbol" }; PNAME(mout_phyclk_ufs20_rx1_user_p) = { "fin_pll", "phyclk_ufs20_rx1_symbol" }; /* fixed rate clocks used in the FSYS1 block */ -struct samsung_fixed_rate_clock fixed_rate_clks_fsys1[] __initdata = { +static struct samsung_fixed_rate_clock fixed_rate_clks_fsys1[] __initdata = { FRATE(PHYCLK_UFS20_TX0_SYMBOL, "phyclk_ufs20_tx0_symbol", NULL, CLK_IS_ROOT, 300000000), FRATE(PHYCLK_UFS20_RX0_SYMBOL, "phyclk_ufs20_rx0_symbol", NULL, -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [GIT PULL] clk/samsung updates for v4.4 2015-10-02 18:37 ` Stephen Boyd @ 2015-10-06 10:18 ` Sylwester Nawrocki 0 siblings, 0 replies; 3+ messages in thread From: Sylwester Nawrocki @ 2015-10-06 10:18 UTC (permalink / raw) To: Stephen Boyd; +Cc: Mike Turquette, linux-clk, linux-samsung-soc On 02/10/15 20:37, Stephen Boyd wrote: > On 10/02, Sylwester Nawrocki wrote: ... > Thanks, pulled. I put this patch on top though. Thanks for taking care of this, I'll make sure such issues are fixed before sending any future pull requests. -- Regards, Sylwester ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-06 10:18 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-10-02 9:51 [GIT PULL] clk/samsung updates for v4.4 Sylwester Nawrocki 2015-10-02 18:37 ` Stephen Boyd 2015-10-06 10:18 ` Sylwester Nawrocki
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).