Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1496684 > unrolled thread

[PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM

Started byGeert Uytterhoeven <geert@linux-m68k.org>
First post2016-10-06 16:50 +0200
Last post2016-10-07 03:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM Geert Uytterhoeven <geert@linux-m68k.org> - 2016-10-06 16:50 +0200
    Re: [PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on  HAS_DMA and HAS_IOMEM David Miller <davem@davemloft.net> - 2016-10-07 03:20 +0200

#1496684 — [PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM

FromGeert Uytterhoeven <geert@linux-m68k.org>
Date2016-10-06 16:50 +0200
Subject[PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM
Message-ID<spi9I-1qA-5@gated-at.bofh.it>
If NO_DMA=y:

    drivers/built-in.o: In function `emac_probe':
    emac.c:(.text+0x3780b8): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x3780e2): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x378112): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x378146): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x37816e): undefined reference to `bad_dma_ops'
    drivers/built-in.o:emac.c:(.text+0x37819a): more undefined references to `bad_dma_ops' follow

If NO_IOMEM=y:

    drivers/net/ethernet/qualcomm/emac/emac.c: In function ‘emac_remove’:
    drivers/net/ethernet/qualcomm/emac/emac.c:736:3: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
       iounmap(adpt->phy.digital);
       ^

Add dependencies on HAS_DMA and HAS_IOMEM to fix this.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
v2:
  - Add dependency on HAS_IOMEM for UML.
---
 drivers/net/ethernet/qualcomm/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/qualcomm/Kconfig b/drivers/net/ethernet/qualcomm/Kconfig
index 9ba568db576fb0e6..d7720bf92d49658a 100644
--- a/drivers/net/ethernet/qualcomm/Kconfig
+++ b/drivers/net/ethernet/qualcomm/Kconfig
@@ -26,6 +26,7 @@ config QCA7000
 
 config QCOM_EMAC
 	tristate "Qualcomm Technologies, Inc. EMAC Gigabit Ethernet support"
+	depends on HAS_DMA && HAS_IOMEM
 	select CRC32
 	select PHYLIB
 	---help---
-- 
1.9.1

[toc] | [next] | [standalone]


#1496961 — Re: [PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM

FromDavid Miller <davem@davemloft.net>
Date2016-10-07 03:20 +0200
SubjectRe: [PATCH v2] ethernet: qualcomm: QCOM_EMAC should depend on HAS_DMA and HAS_IOMEM
Message-ID<sprZo-Id-15@gated-at.bofh.it>
In reply to#1496684
From: Geert Uytterhoeven <geert@linux-m68k.org>
Date: Thu,  6 Oct 2016 16:44:53 +0200

> If NO_DMA=y:
> 
>     drivers/built-in.o: In function `emac_probe':
>     emac.c:(.text+0x3780b8): undefined reference to `bad_dma_ops'
>     emac.c:(.text+0x3780e2): undefined reference to `bad_dma_ops'
>     emac.c:(.text+0x378112): undefined reference to `bad_dma_ops'
>     emac.c:(.text+0x378146): undefined reference to `bad_dma_ops'
>     emac.c:(.text+0x37816e): undefined reference to `bad_dma_ops'
>     drivers/built-in.o:emac.c:(.text+0x37819a): more undefined references to `bad_dma_ops' follow
> 
> If NO_IOMEM=y:
> 
>     drivers/net/ethernet/qualcomm/emac/emac.c: In function ‘emac_remove’:
>     drivers/net/ethernet/qualcomm/emac/emac.c:736:3: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
>        iounmap(adpt->phy.digital);
>        ^
> 
> Add dependencies on HAS_DMA and HAS_IOMEM to fix this.
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

Applied.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web