* [PATCH 0/4] randconfig fixes for mmc
@ 2014-06-05 21:14 Arnd Bergmann
2014-06-05 21:14 ` [PATCH 3/4] mmc: omap: don't select TPS65010 Arnd Bergmann
2014-06-12 9:00 ` [PATCH 0/4] randconfig fixes for mmc Ulf Hansson
0 siblings, 2 replies; 3+ messages in thread
From: Arnd Bergmann @ 2014-06-05 21:14 UTC (permalink / raw)
To: Chris Ball
Cc: Ulf Hansson, linux-mmc, Arnd Bergmann, Ludovic Desroches,
Nicolas Pitre, Thomas Petazzoni, Jason Cooper, Andrew Lunn,
linux-omap, Jarkko Nikula
Hi Chris, Ulf,
These are small fixes from my randconfig testing, almost all for
older bugs, please apply to a tree you see appropriate.
Arnd
Arnd Bergmann (4):
mmc: atmel-mci: incude asm/cacheclush.h
mmc: mvsdio: avoid compiler warning
mmc: omap: don't select TPS65010
mmc: simplify SDHCI Kconfig dependencies
drivers/mmc/host/Kconfig | 10 ++++------
drivers/mmc/host/atmel-mci.c | 1 +
drivers/mmc/host/mvsdio.c | 2 +-
3 files changed, 6 insertions(+), 7 deletions(-)
--
1.8.3.2
Cc: Ludovic Desroches <ludovic.desroches@atmel.com>
Cc: Nicolas Pitre <nico@fluxnic.net>
Cc: Chris Ball <chris@printf.net>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: linux-mmc@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: Jarkko Nikula <jarkko.nikula@bitmer.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 3/4] mmc: omap: don't select TPS65010
2014-06-05 21:14 [PATCH 0/4] randconfig fixes for mmc Arnd Bergmann
@ 2014-06-05 21:14 ` Arnd Bergmann
2014-06-12 9:00 ` [PATCH 0/4] randconfig fixes for mmc Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Arnd Bergmann @ 2014-06-05 21:14 UTC (permalink / raw)
To: Chris Ball
Cc: Ulf Hansson, linux-mmc, Arnd Bergmann, linux-omap, Jarkko Nikula
The MMC host driver should not select the pmic driver, since that
may have other dependencies, notably i2c in this case. It's not
clear what the exact requirement of the driver is, but to preserve
the behavior, this patch changes the 'select' into 'depends on',
meaning you now have to turn on TPS65010 explicitly and then
MMC_OMAP.
Found during randconfig build testing.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: linux-omap@vger.kernel.org
Cc: Jarkko Nikula <jarkko.nikula@bitmer.com>
---
drivers/mmc/host/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index cdf21cc..adffe0e 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -295,7 +295,7 @@ config MMC_MOXART
config MMC_OMAP
tristate "TI OMAP Multimedia Card Interface support"
depends on ARCH_OMAP
- select TPS65010 if MACH_OMAP_H2
+ depends on TPS65010 || !MACH_OMAP_H2
help
This selects the TI OMAP Multimedia card Interface.
If you have an OMAP board with a Multimedia Card slot,
--
1.8.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/4] randconfig fixes for mmc
2014-06-05 21:14 [PATCH 0/4] randconfig fixes for mmc Arnd Bergmann
2014-06-05 21:14 ` [PATCH 3/4] mmc: omap: don't select TPS65010 Arnd Bergmann
@ 2014-06-12 9:00 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2014-06-12 9:00 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Chris Ball, linux-mmc, Ludovic Desroches, Nicolas Pitre,
Thomas Petazzoni, Jason Cooper, Andrew Lunn, linux-omap,
Jarkko Nikula
On 5 June 2014 23:14, Arnd Bergmann <arnd@arndb.de> wrote:
> Hi Chris, Ulf,
>
> These are small fixes from my randconfig testing, almost all for
> older bugs, please apply to a tree you see appropriate.
Thanks Arnd!
Applied for fixes.
Kind regards
Uffe
>
> Arnd
>
> Arnd Bergmann (4):
> mmc: atmel-mci: incude asm/cacheclush.h
> mmc: mvsdio: avoid compiler warning
> mmc: omap: don't select TPS65010
> mmc: simplify SDHCI Kconfig dependencies
>
> drivers/mmc/host/Kconfig | 10 ++++------
> drivers/mmc/host/atmel-mci.c | 1 +
> drivers/mmc/host/mvsdio.c | 2 +-
> 3 files changed, 6 insertions(+), 7 deletions(-)
>
> --
> 1.8.3.2
>
> Cc: Ludovic Desroches <ludovic.desroches@atmel.com>
> Cc: Nicolas Pitre <nico@fluxnic.net>
> Cc: Chris Ball <chris@printf.net>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Cc: Jason Cooper <jason@lakedaemon.net>
> Cc: Andrew Lunn <andrew@lunn.ch>
> Cc: linux-mmc@vger.kernel.org
> Cc: linux-omap@vger.kernel.org
> Cc: Jarkko Nikula <jarkko.nikula@bitmer.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-12 9:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 21:14 [PATCH 0/4] randconfig fixes for mmc Arnd Bergmann
2014-06-05 21:14 ` [PATCH 3/4] mmc: omap: don't select TPS65010 Arnd Bergmann
2014-06-12 9:00 ` [PATCH 0/4] randconfig fixes for mmc Ulf Hansson
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).