* [PATCH 1/2] mmc: host: MMC_SH_MMCIF should depend on HAS_DMA
@ 2014-02-21 19:52 Geert Uytterhoeven
2014-02-21 19:52 ` [PATCH 2/2] mmc: host: MMC_OMAP_HS " Geert Uytterhoeven
2014-02-21 20:26 ` [PATCH 1/2] mmc: host: MMC_SH_MMCIF " Laurent Pinchart
0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2014-02-21 19:52 UTC (permalink / raw)
To: Chris Ball, Laurent Pinchart, Amarinder Bindra
Cc: linux-mmc, linux-kernel, Geert Uytterhoeven
If NO_DMA=y:
drivers/built-in.o: In function `sh_mmcif_start_dma_tx':
sh_mmcif.c:(.text+0x5a3286): undefined reference to `dma_map_sg'
drivers/built-in.o: In function `sh_mmcif_start_dma_rx':
sh_mmcif.c:(.text+0x5a33fc): undefined reference to `dma_map_sg'
drivers/built-in.o: In function `sh_mmcif_end_cmd':
sh_mmcif.c:(.text+0x5a3668): undefined reference to `dma_unmap_sg'
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
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 1384f67abe21..bfe2133d0b9c 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -611,7 +611,7 @@ config MMC_DW_PCI
config MMC_SH_MMCIF
tristate "SuperH Internal MMCIF support"
- depends on MMC_BLOCK
+ depends on MMC_BLOCK && HAS_DMA
depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
help
This selects the MMC Host Interface controller (MMCIF).
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] mmc: host: MMC_OMAP_HS should depend on HAS_DMA
2014-02-21 19:52 [PATCH 1/2] mmc: host: MMC_SH_MMCIF should depend on HAS_DMA Geert Uytterhoeven
@ 2014-02-21 19:52 ` Geert Uytterhoeven
2014-02-21 20:26 ` [PATCH 1/2] mmc: host: MMC_SH_MMCIF " Laurent Pinchart
1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2014-02-21 19:52 UTC (permalink / raw)
To: Chris Ball, Laurent Pinchart, Amarinder Bindra
Cc: linux-mmc, linux-kernel, Geert Uytterhoeven
If NO_DMA=y:
drivers/built-in.o: In function `omap_hsmmc_pre_dma_transfer':
omap_hsmmc.c:(.text+0x5a0928): undefined reference to `dma_map_sg'
drivers/built-in.o: In function `omap_hsmmc_dma_cleanup':
omap_hsmmc.c:(.text+0x5a0e8e): undefined reference to `dma_unmap_sg'
drivers/built-in.o: In function `omap_hsmmc_dma_callback':
omap_hsmmc.c:(.text+0x5a1f58): undefined reference to `dma_unmap_sg'
drivers/built-in.o: In function `omap_hsmmc_post_req':
omap_hsmmc.c:(.text+0x5a2082): undefined reference to `dma_unmap_sg'
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
drivers/mmc/host/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index bfe2133d0b9c..2496b9d649f1 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -296,6 +296,7 @@ config MMC_OMAP
config MMC_OMAP_HS
tristate "TI OMAP High Speed Multimedia Card Interface support"
+ depends on HAS_DMA
depends on ARCH_OMAP2PLUS || COMPILE_TEST
help
This selects the TI OMAP High Speed Multimedia card Interface.
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] mmc: host: MMC_SH_MMCIF should depend on HAS_DMA
2014-02-21 19:52 [PATCH 1/2] mmc: host: MMC_SH_MMCIF should depend on HAS_DMA Geert Uytterhoeven
2014-02-21 19:52 ` [PATCH 2/2] mmc: host: MMC_OMAP_HS " Geert Uytterhoeven
@ 2014-02-21 20:26 ` Laurent Pinchart
1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2014-02-21 20:26 UTC (permalink / raw)
To: Geert Uytterhoeven, Amarinder Bindra; +Cc: Chris Ball, linux-mmc, linux-kernel
Hi Geert,
Thank you for the patches.
On Friday 21 February 2014 20:52:50 Geert Uytterhoeven wrote:
> If NO_DMA=y:
>
> drivers/built-in.o: In function `sh_mmcif_start_dma_tx':
> sh_mmcif.c:(.text+0x5a3286): undefined reference to `dma_map_sg'
> drivers/built-in.o: In function `sh_mmcif_start_dma_rx':
> sh_mmcif.c:(.text+0x5a33fc): undefined reference to `dma_map_sg'
> drivers/built-in.o: In function `sh_mmcif_end_cmd':
> sh_mmcif.c:(.text+0x5a3668): undefined reference to `dma_unmap_sg'
>
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
For both,
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.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 1384f67abe21..bfe2133d0b9c 100644
> --- a/drivers/mmc/host/Kconfig
> +++ b/drivers/mmc/host/Kconfig
> @@ -611,7 +611,7 @@ config MMC_DW_PCI
>
> config MMC_SH_MMCIF
> tristate "SuperH Internal MMCIF support"
> - depends on MMC_BLOCK
> + depends on MMC_BLOCK && HAS_DMA
> depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
> help
> This selects the MMC Host Interface controller (MMCIF).
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-02-21 20:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-21 19:52 [PATCH 1/2] mmc: host: MMC_SH_MMCIF should depend on HAS_DMA Geert Uytterhoeven
2014-02-21 19:52 ` [PATCH 2/2] mmc: host: MMC_OMAP_HS " Geert Uytterhoeven
2014-02-21 20:26 ` [PATCH 1/2] mmc: host: MMC_SH_MMCIF " Laurent Pinchart
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).