* [PATCH 00/12] ARM: randconfig patches for platforms
@ 2017-07-20 15:45 Arnd Bergmann
2017-07-20 15:53 ` [PATCH 10/12] [v2] ARM: s3c24xx: make H1940BT depend on RFKILL Arnd Bergmann
0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2017-07-20 15:45 UTC (permalink / raw)
Cc: Arnd Bergmann, Russell King, Sekhar Nori, Kevin Hilman,
Hartley Sweeten, Alexander Sverdlin, Imre Kaloz, Krzysztof Halasa,
Eric Miao, Haojian Zhuang, Aaro Koskinen, Tony Lindgren,
Barry Song, Daniel Mack, Robert Jarzmik, Kukjin Kim,
Krzysztof Kozlowski, Wan ZongShun, Dmitry Eremin-Solenikov,
linux-arm-kernel
I've gone through a lot of older patches in my randconfig test
tree, to see which ones are still needed to fix warnings we
get in mainline.
It seems that I posted one series in early 2016 and applied
the patches to my test tree, but never followed up on them.
Some other patches in this series are newer than that and
didn't make it in for some other reason.
Please have another look. If there are no objections, I'd
add them to the fixes-non-critical branch for the next merge
window. None of these seem to be of any importance other than
to shut up the warnings.
Arnd
Arnd Bergmann (12):
ARM: ixp4xx: fix ioport_unmap definition
ARM: ep93xx: use ARM_PATCH_PHYS_VIRT
ARM: normalize clk API for older platforms
ARM: sa1100/pxa: fix MTD_XIP build
ARM: mmp: mark usb_dma_mask as __maybe_unused
ARM: omap2: mark unused functions as __maybe_unused
ARM: omap1: avoid unused variable warning
ARM: sirf: mark sirfsoc_init_late as __maybe_unused
ARM: ixp4xx: use normal prototype for {read,write}s{b,w,l}
[v2] ARM: s3c24xx: make H1940BT depend on RFKILL
ARM: omap1/ams-delta: warn about failed regulator enable
ARM: rpc: rename RAM_SIZE macro
Cc: Russell King <linux@armlinux.org.uk>
Cc: Sekhar Nori <nsekhar@ti.com>
Cc: Kevin Hilman <khilman@kernel.org>
Cc: Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Cc: Imre Kaloz <kaloz@openwrt.org>
Cc: Krzysztof Halasa <khalasa@piap.pl>
Cc: Eric Miao <eric.y.miao@gmail.com>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Barry Song <baohua@kernel.org>
Cc: Daniel Mack <daniel@zonque.org>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: Kukjin Kim <kgene@kernel.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-omap@vger.kernel.org
Cc: linux-samsung-soc@vger.kernel.org
arch/arm/Kconfig | 2 +-
arch/arm/mach-davinci/clock.c | 6 +++++
arch/arm/mach-ep93xx/clock.c | 21 ++++++++++++++++++
arch/arm/mach-ixp4xx/include/mach/io.h | 34 ++++++++++++++++++++++-------
arch/arm/mach-mmp/clock.c | 22 +++++++++++++++++++
arch/arm/mach-mmp/devices.c | 2 +-
arch/arm/mach-omap1/board-ams-delta.c | 12 ++++++++--
arch/arm/mach-omap1/board-osk.c | 4 ----
arch/arm/mach-omap2/board-generic.c | 2 +-
arch/arm/mach-omap2/io.c | 2 +-
arch/arm/mach-prima2/common.c | 2 +-
arch/arm/mach-pxa/include/mach/mtd-xip.h | 10 ++++++---
arch/arm/mach-rpc/include/mach/hardware.h | 4 ++--
arch/arm/mach-s3c24xx/Kconfig | 2 +-
arch/arm/mach-sa1100/clock.c | 29 ++++++++++++++++++++++++
arch/arm/mach-sa1100/include/mach/mtd-xip.h | 4 ++--
arch/arm/mach-w90x900/clock.c | 29 ++++++++++++++++++++++++
17 files changed, 160 insertions(+), 27 deletions(-)
--
2.9.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 10/12] [v2] ARM: s3c24xx: make H1940BT depend on RFKILL
2017-07-20 15:45 [PATCH 00/12] ARM: randconfig patches for platforms Arnd Bergmann
@ 2017-07-20 15:53 ` Arnd Bergmann
2017-07-20 19:30 ` Krzysztof Kozlowski
0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2017-07-20 15:53 UTC (permalink / raw)
To: Kukjin Kim, Krzysztof Kozlowski
Cc: Arnd Bergmann, Linus Walleij, Daniel Lezcano, linux-arm-kernel,
linux-samsung-soc, linux-kernel
Bluetooth is only supported when network support is part of the kernel,
so it is a bit pointless to build the hi1940-bt support without networking.
If we try anyway, we get a Kconfig warning:
warning: (TOSA_BT && H1940BT) selects RFKILL which has unmet direct dependencies (NET)
This turns the 'select' into 'depends on' as Krzysztof suggested when
I first sent a fix.
Suggested-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://patchwork.kernel.org/patch/8164161/
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v1 was sent in Jan 2016, and instead added a dependency on CONFIG_NET
---
arch/arm/mach-s3c24xx/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
index 648c519c7593..7da0165334ae 100644
--- a/arch/arm/mach-s3c24xx/Kconfig
+++ b/arch/arm/mach-s3c24xx/Kconfig
@@ -237,7 +237,7 @@ config ARCH_H1940
config H1940BT
tristate "Control the state of H1940 bluetooth chip"
depends on ARCH_H1940
- select RFKILL
+ depends on RFKILL
help
This is a simple driver that is able to control
the state of built in bluetooth chip on h1940.
--
2.9.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 10/12] [v2] ARM: s3c24xx: make H1940BT depend on RFKILL
2017-07-20 15:53 ` [PATCH 10/12] [v2] ARM: s3c24xx: make H1940BT depend on RFKILL Arnd Bergmann
@ 2017-07-20 19:30 ` Krzysztof Kozlowski
0 siblings, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2017-07-20 19:30 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Kukjin Kim, Linus Walleij, Daniel Lezcano, linux-arm-kernel,
linux-samsung-soc, linux-kernel
On Thu, Jul 20, 2017 at 05:53:43PM +0200, Arnd Bergmann wrote:
> Bluetooth is only supported when network support is part of the kernel,
> so it is a bit pointless to build the hi1940-bt support without networking.
> If we try anyway, we get a Kconfig warning:
>
> warning: (TOSA_BT && H1940BT) selects RFKILL which has unmet direct dependencies (NET)
>
> This turns the 'select' into 'depends on' as Krzysztof suggested when
> I first sent a fix.
>
> Suggested-by: Krzysztof Kozlowski <krzk@kernel.org>
> Link: https://patchwork.kernel.org/patch/8164161/
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
> v1 was sent in Jan 2016, and instead added a dependency on CONFIG_NET
> ---
> arch/arm/mach-s3c24xx/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Thanks, applied.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-20 19:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-20 15:45 [PATCH 00/12] ARM: randconfig patches for platforms Arnd Bergmann
2017-07-20 15:53 ` [PATCH 10/12] [v2] ARM: s3c24xx: make H1940BT depend on RFKILL Arnd Bergmann
2017-07-20 19:30 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox