linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: defconfig: enable ARCH_BCM
@ 2022-09-06  3:39 Florian Fainelli
  2022-09-08 18:17 ` Anders Roxell
  2022-09-09  7:35 ` Naresh Kamboju
  0 siblings, 2 replies; 5+ messages in thread
From: Florian Fainelli @ 2022-09-06  3:39 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: soc, michael, Florian Fainelli, Catalin Marinas, Will Deacon,
	Bjorn Andersson, Shawn Guo, Geert Uytterhoeven,
	Krzysztof Kozlowski, Arnd Bergmann, Marcel Ziswiler, Biju Das,
	Dmitry Baryshkov, Vinod Koul, open list

Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
SoCs Kconfig depend on it, but did not enable it in the defconfig.
Thus, now the defconfig doesn't include support for any Broadcom
architectures anymore. Fix it.

Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 91e58cf59c99..4c8b09c6b49f 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -33,6 +33,7 @@ CONFIG_ARCH_ACTIONS=y
 CONFIG_ARCH_SUNXI=y
 CONFIG_ARCH_ALPINE=y
 CONFIG_ARCH_APPLE=y
+CONFIG_ARCH_BCM=y
 CONFIG_ARCH_BCM2835=y
 CONFIG_ARCH_BCMBCA=y
 CONFIG_ARCH_BCM_IPROC=y
-- 
2.25.1


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

* Re: [PATCH] arm64: defconfig: enable ARCH_BCM
  2022-09-06  3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli
@ 2022-09-08 18:17 ` Anders Roxell
  2022-09-09  7:35 ` Naresh Kamboju
  1 sibling, 0 replies; 5+ messages in thread
From: Anders Roxell @ 2022-09-08 18:17 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: linux-arm-kernel, soc, michael, Catalin Marinas, Will Deacon,
	Bjorn Andersson, Shawn Guo, Geert Uytterhoeven,
	Krzysztof Kozlowski, Arnd Bergmann, Marcel Ziswiler, Biju Das,
	Dmitry Baryshkov, Vinod Koul, open list

On 2022-09-05 20:39, Florian Fainelli wrote:
> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
> SoCs Kconfig depend on it, but did not enable it in the defconfig.
> Thus, now the defconfig doesn't include support for any Broadcom
> architectures anymore. Fix it.
> 
> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Tested-by: Anders Roxell <anders.roxell@linaro.org>

Cheers,
Anders

> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 91e58cf59c99..4c8b09c6b49f 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -33,6 +33,7 @@ CONFIG_ARCH_ACTIONS=y
>  CONFIG_ARCH_SUNXI=y
>  CONFIG_ARCH_ALPINE=y
>  CONFIG_ARCH_APPLE=y
> +CONFIG_ARCH_BCM=y
>  CONFIG_ARCH_BCM2835=y
>  CONFIG_ARCH_BCMBCA=y
>  CONFIG_ARCH_BCM_IPROC=y
> -- 
> 2.25.1
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH] arm64: defconfig: enable ARCH_BCM
  2022-09-06  3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli
  2022-09-08 18:17 ` Anders Roxell
@ 2022-09-09  7:35 ` Naresh Kamboju
  2022-09-09  7:38   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 5+ messages in thread
From: Naresh Kamboju @ 2022-09-09  7:35 UTC (permalink / raw)
  To: f.fainelli
  Cc: andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov,
	geert+renesas, krzysztof.kozlowski, linux-arm-kernel,
	linux-kernel, marcel.ziswiler, michael, shawnguo, soc, vkoul,
	will, Naresh kamboju, lkft-triage,
	Linux Kernel Functional Testing

From: Naresh kamboju <naresh.kamboju@linaro.org>


On 2022-09-05 20:39, Florian Fainelli wrote:
> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
> SoCs Kconfig depend on it, but did not enable it in the defconfig.
> Thus, now the defconfig doesn't include support for any Broadcom
> architectures anymore. Fix it.
> 
> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>

--
Linaro LKFT
https://lkft.linaro.org

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

* Re: [PATCH] arm64: defconfig: enable ARCH_BCM
  2022-09-09  7:35 ` Naresh Kamboju
@ 2022-09-09  7:38   ` Krzysztof Kozlowski
  2022-09-09 12:24     ` Naresh Kamboju
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-09  7:38 UTC (permalink / raw)
  To: Naresh Kamboju, f.fainelli
  Cc: andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov,
	geert+renesas, linux-arm-kernel, linux-kernel, marcel.ziswiler,
	michael, shawnguo, soc, vkoul, will, lkft-triage,
	Linux Kernel Functional Testing

On 09/09/2022 09:35, Naresh Kamboju wrote:
> From: Naresh kamboju <naresh.kamboju@linaro.org>
> 
> 
> On 2022-09-05 20:39, Florian Fainelli wrote:
>> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
>> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
>> SoCs Kconfig depend on it, but did not enable it in the defconfig.
>> Thus, now the defconfig doesn't include support for any Broadcom
>> architectures anymore. Fix it.
>>
>> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
>> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> 
> Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>

The patch was sent on 6th of September. Your report on 8th of September...

Best regards,
Krzysztof

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

* Re: [PATCH] arm64: defconfig: enable ARCH_BCM
  2022-09-09  7:38   ` Krzysztof Kozlowski
@ 2022-09-09 12:24     ` Naresh Kamboju
  0 siblings, 0 replies; 5+ messages in thread
From: Naresh Kamboju @ 2022-09-09 12:24 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: f.fainelli, andersson, arnd, biju.das.jz, catalin.marinas,
	dmitry.baryshkov, geert+renesas, linux-arm-kernel, linux-kernel,
	marcel.ziswiler, michael, shawnguo, soc, vkoul, will,
	lkft-triage, Linux Kernel Functional Testing, Benjamin Copeland,
	Anders Roxell

On Fri, 9 Sept 2022 at 13:08, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> On 09/09/2022 09:35, Naresh Kamboju wrote:
> > From: Naresh kamboju <naresh.kamboju@linaro.org>
> >
> >
> > On 2022-09-05 20:39, Florian Fainelli wrote:
> >> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
> >> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
> >> SoCs Kconfig depend on it, but did not enable it in the defconfig.
> >> Thus, now the defconfig doesn't include support for any Broadcom
> >> architectures anymore. Fix it.
> >>
> >> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
> >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> >
> > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
>
> The patch was sent on 6th of September. Your report on 8th of September...

Understood !
Maybe off-topic,
Testing Linux next seems to be a bit late to report the regressions.
Our testing would have build and boot test devicetree/for-next or
devicetree / master branches to find early regressions.
or Any other well known maintainers trees.

Your suggestions are most welcome for improving Linux kernel quality.

Best regards
Naresh Kamboju

--
Linaro LKFT
https://lkft.linaro.org

>
> Best regards,
> Krzysztof

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

end of thread, other threads:[~2022-09-09 12:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-06  3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli
2022-09-08 18:17 ` Anders Roxell
2022-09-09  7:35 ` Naresh Kamboju
2022-09-09  7:38   ` Krzysztof Kozlowski
2022-09-09 12:24     ` Naresh Kamboju

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).