public inbox for linux-clk@vger.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA
       [not found] <20220707065800.261269-1-william.zhang@broadcom.com>
@ 2022-07-07  6:57 ` William Zhang
  2022-07-07 16:23   ` Florian Fainelli
                     ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: William Zhang @ 2022-07-07  6:57 UTC (permalink / raw)
  To: Linux ARM List, Broadcom Kernel List
  Cc: anand.gore, dan.beygelman, kursad.oney, joel.peshkin, f.fainelli,
	William Zhang, Michael Turquette, Stephen Boyd, linux-clk,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 821 bytes --]

Prepare for the BCM63138 ARCH_BCM_63XX migration to ARCH_BCMBCA. Make
CLK_BCM_63XX depending and setting default on ARCH_BCMBCA.

Signed-off-by: William Zhang <william.zhang@broadcom.com>
---

 drivers/clk/bcm/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/bcm/Kconfig b/drivers/clk/bcm/Kconfig
index ec738f74a026..77266afb1c79 100644
--- a/drivers/clk/bcm/Kconfig
+++ b/drivers/clk/bcm/Kconfig
@@ -22,9 +22,9 @@ config CLK_BCM2835
 
 config CLK_BCM_63XX
 	bool "Broadcom BCM63xx clock support"
-	depends on ARCH_BCM_63XX || COMPILE_TEST
+	depends on ARCH_BCMBCA || COMPILE_TEST
 	select COMMON_CLK_IPROC
-	default ARCH_BCM_63XX
+	default ARCH_BCMBCA
 	help
 	  Enable common clock framework support for Broadcom BCM63xx DSL SoCs
 	  based on the ARM architecture
-- 
2.34.1


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4212 bytes --]

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA
  2022-07-07  6:57 ` [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA William Zhang
@ 2022-07-07 16:23   ` Florian Fainelli
  2022-07-11  2:11   ` Florian Fainelli
  2022-07-30  1:03   ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2022-07-07 16:23 UTC (permalink / raw)
  To: William Zhang, Linux ARM List, Broadcom Kernel List
  Cc: anand.gore, dan.beygelman, kursad.oney, joel.peshkin, f.fainelli,
	Michael Turquette, Stephen Boyd, linux-clk, linux-kernel

On 7/6/22 23:57, William Zhang wrote:
> Prepare for the BCM63138 ARCH_BCM_63XX migration to ARCH_BCMBCA. Make
> CLK_BCM_63XX depending and setting default on ARCH_BCMBCA.
> 
> Signed-off-by: William Zhang <william.zhang@broadcom.com>

Acked-by: Florian Fainelli <f.fainelli@gmail.com>

There is no cover letter for this 8 patch series :/ it is not clear to 
me whether each subsystem maintainer will be in a position to merge 
these patches individually, yet still have all 8 (7 of them actually, 
see comment to patch 1) land in 5.20.

Alternatively, we can merge these patches through the Broadcom ARM SoC 
pull request(s) to ensure they all land at the same time.
-- 
Florian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA
  2022-07-07  6:57 ` [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA William Zhang
  2022-07-07 16:23   ` Florian Fainelli
@ 2022-07-11  2:11   ` Florian Fainelli
  2022-07-30  1:03   ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2022-07-11  2:11 UTC (permalink / raw)
  To: bcm-kernel-feedback-list, William Zhang, Linux ARM List
  Cc: anand.gore, dan.beygelman, kursad.oney, joel.peshkin,
	Michael Turquette, Stephen Boyd, linux-clk, linux-kernel

On Wed,  6 Jul 2022 23:57:55 -0700, William Zhang <william.zhang@broadcom.com> wrote:
> Prepare for the BCM63138 ARCH_BCM_63XX migration to ARCH_BCMBCA. Make
> CLK_BCM_63XX depending and setting default on ARCH_BCMBCA.
> 
> Signed-off-by: William Zhang <william.zhang@broadcom.com>
> ---

Applied to https://github.com/Broadcom/stblinux/commits/drivers/next, thanks!
--
Florian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA
  2022-07-07  6:57 ` [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA William Zhang
  2022-07-07 16:23   ` Florian Fainelli
  2022-07-11  2:11   ` Florian Fainelli
@ 2022-07-30  1:03   ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2022-07-30  1:03 UTC (permalink / raw)
  To: Broadcom Kernel List, Linux ARM List, William Zhang
  Cc: anand.gore, dan.beygelman, kursad.oney, joel.peshkin, f.fainelli,
	William Zhang, Michael Turquette, linux-clk, linux-kernel

Quoting William Zhang (2022-07-06 23:57:55)
> Prepare for the BCM63138 ARCH_BCM_63XX migration to ARCH_BCMBCA. Make
> CLK_BCM_63XX depending and setting default on ARCH_BCMBCA.
> 
> Signed-off-by: William Zhang <william.zhang@broadcom.com>
> ---

Acked-by: Stephen Boyd <sboyd@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-30  1:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20220707065800.261269-1-william.zhang@broadcom.com>
2022-07-07  6:57 ` [RESEND PATCH 4/8] clk: bcm: bcmbca: Replace ARCH_BCM_63XX with ARCH_BCMBCA William Zhang
2022-07-07 16:23   ` Florian Fainelli
2022-07-11  2:11   ` Florian Fainelli
2022-07-30  1:03   ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox