All of lore.kernel.org
 help / color / mirror / Atom feed
From: Heiko Stuebner <heiko@sntech.de>
To: Elaine Zhang <zhangqing@rock-chips.com>
Cc: Heiko Stuebner <heiko@sntech.de>,
	linux-rockchip@lists.infradead.org, xxx@rock-chips.com,
	huangtao@rock-chips.com, sboyd@kernel.org,
	mturquette@baylibre.com, kever.yang@rock-chips.com,
	xf@rock-chips.com, linux-clk@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 0/6] clk: rockchip: Support module build
Date: Tue, 22 Sep 2020 15:35:30 +0200	[thread overview]
Message-ID: <160078161850.2368325.2980207509081000555.b4-ty@sntech.de> (raw)
In-Reply-To: <20200914022225.23613-1-zhangqing@rock-chips.com>

On Mon, 14 Sep 2020 10:22:19 +0800, Elaine Zhang wrote:
> Export some APIs for module drivers.
> Fix the clock config to support module build.
> Fix the clk driver init, add module author, description
> and license to support building RK3399 SoC clock driver as module.
> 
> Change in V2:
> [PATCH v2 1/6]: remove "clk",and check "hw" isn't an error value.
> [PATCH v2 6/6]: store a function pointer in the match data.
> 
> [...]

Applied, thanks!

[1/6] clk: rockchip: Use clk_hw_register_composite instead of clk_register_composite calls
      commit: 63207c37eac4f15fdebac14685a315c259c0a780
[2/6] clk: rockchip: Export rockchip_clk_register_ddrclk()
      commit: f73907de3493b94d80af5122bcacc98f0e7b295b
[3/6] clk: rockchip: Export rockchip_register_softrst()
      commit: 37353491d1a8c207685c138c3640bd43864b70d9
[4/6] clk: rockchip: Export some clock common APIs for module drivers
      commit: ea650c26611dd61adfcc8647d6144f2c9f453d90
[5/6] clk: rockchip: fix the clk config to support module build
      commit: 4d98ed1e126495016f2a3ef4db6379855c4aacf2
[6/6] clk: rockchip: rk3399: Support module build
      commit: 70d839e2761d22eba6facdb3b65faea4d57f355d


I did some minor tweaks:
- in the Kconfig texts "Rk" -> "RK"
- made the rk3399 entry bool in patch 5
  so that it stays correct when a bisection lands between
  patches 5 and 6
- made in tristate in patch6 which adds the rest of module
  elements


Best regards,
-- 
Heiko Stuebner <heiko@sntech.de>

WARNING: multiple messages have this Message-ID (diff)
From: Heiko Stuebner <heiko@sntech.de>
To: Elaine Zhang <zhangqing@rock-chips.com>
Cc: huangtao@rock-chips.com, Heiko Stuebner <heiko@sntech.de>,
	xf@rock-chips.com, sboyd@kernel.org,
	linux-kernel@vger.kernel.org, xxx@rock-chips.com,
	kever.yang@rock-chips.com, linux-clk@vger.kernel.org,
	linux-rockchip@lists.infradead.org, mturquette@baylibre.com
Subject: Re: [PATCH v4 0/6] clk: rockchip: Support module build
Date: Tue, 22 Sep 2020 15:35:30 +0200	[thread overview]
Message-ID: <160078161850.2368325.2980207509081000555.b4-ty@sntech.de> (raw)
In-Reply-To: <20200914022225.23613-1-zhangqing@rock-chips.com>

On Mon, 14 Sep 2020 10:22:19 +0800, Elaine Zhang wrote:
> Export some APIs for module drivers.
> Fix the clock config to support module build.
> Fix the clk driver init, add module author, description
> and license to support building RK3399 SoC clock driver as module.
> 
> Change in V2:
> [PATCH v2 1/6]: remove "clk",and check "hw" isn't an error value.
> [PATCH v2 6/6]: store a function pointer in the match data.
> 
> [...]

Applied, thanks!

[1/6] clk: rockchip: Use clk_hw_register_composite instead of clk_register_composite calls
      commit: 63207c37eac4f15fdebac14685a315c259c0a780
[2/6] clk: rockchip: Export rockchip_clk_register_ddrclk()
      commit: f73907de3493b94d80af5122bcacc98f0e7b295b
[3/6] clk: rockchip: Export rockchip_register_softrst()
      commit: 37353491d1a8c207685c138c3640bd43864b70d9
[4/6] clk: rockchip: Export some clock common APIs for module drivers
      commit: ea650c26611dd61adfcc8647d6144f2c9f453d90
[5/6] clk: rockchip: fix the clk config to support module build
      commit: 4d98ed1e126495016f2a3ef4db6379855c4aacf2
[6/6] clk: rockchip: rk3399: Support module build
      commit: 70d839e2761d22eba6facdb3b65faea4d57f355d


I did some minor tweaks:
- in the Kconfig texts "Rk" -> "RK"
- made the rk3399 entry bool in patch 5
  so that it stays correct when a bisection lands between
  patches 5 and 6
- made in tristate in patch6 which adds the rest of module
  elements


Best regards,
-- 
Heiko Stuebner <heiko@sntech.de>

_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

  parent reply	other threads:[~2020-09-22 13:35 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-14  2:22 [PATCH v4 0/6] clk: rockchip: Support module build Elaine Zhang
2020-09-14  2:22 ` Elaine Zhang
2020-09-14  2:22 ` [PATCH v4 1/6] clk: rockchip: Use clk_hw_register_composite instead of clk_register_composite calls Elaine Zhang
2020-09-14  2:22   ` Elaine Zhang
2020-09-15  0:41   ` Stephen Boyd
2020-09-15  0:41     ` Stephen Boyd
2020-09-14  2:22 ` [PATCH v4 2/6] clk: rockchip: Export rockchip_clk_register_ddrclk() Elaine Zhang
2020-09-14  2:22   ` Elaine Zhang
2020-09-15  0:41   ` Stephen Boyd
2020-09-15  0:41     ` Stephen Boyd
2020-09-14  2:22 ` [PATCH v4 3/6] clk: rockchip: Export rockchip_register_softrst() Elaine Zhang
2020-09-14  2:22   ` Elaine Zhang
2020-09-15  0:42   ` Stephen Boyd
2020-09-15  0:42     ` Stephen Boyd
2020-09-14  2:22 ` [PATCH v4 4/6] clk: rockchip: Export some clock common APIs for module drivers Elaine Zhang
2020-09-14  2:22   ` Elaine Zhang
2020-09-15  0:42   ` Stephen Boyd
2020-09-15  0:42     ` Stephen Boyd
2020-09-14  2:23 ` [PATCH v4 5/6] clk: rockchip: fix the clk config to support module build Elaine Zhang
2020-09-14  2:23   ` Elaine Zhang
2020-09-15  0:42   ` Stephen Boyd
2020-09-15  0:42     ` Stephen Boyd
2020-09-14  2:23 ` [PATCH v4 6/6] clk: rockchip: rk3399: Support " Elaine Zhang
2020-09-14  2:23   ` Elaine Zhang
2020-09-15  0:42   ` Stephen Boyd
2020-09-15  0:42     ` Stephen Boyd
2020-09-22 13:35 ` Heiko Stuebner [this message]
2020-09-22 13:35   ` [PATCH v4 0/6] clk: rockchip: " Heiko Stuebner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=160078161850.2368325.2980207509081000555.b4-ty@sntech.de \
    --to=heiko@sntech.de \
    --cc=huangtao@rock-chips.com \
    --cc=kever.yang@rock-chips.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    --cc=xf@rock-chips.com \
    --cc=xxx@rock-chips.com \
    --cc=zhangqing@rock-chips.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.