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


Groups > linux.kernel > #1425184 > unrolled thread

[PATCH 9/9] [RFC] pci: include <asm/dma.h> for isa_dma_bridge_buggy

Started byBen Dooks <ben.dooks@codethink.co.uk>
First post2016-06-17 17:10 +0200
Last post2016-06-17 17:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 9/9] [RFC] pci: include <asm/dma.h> for isa_dma_bridge_buggy Ben Dooks <ben.dooks@codethink.co.uk> - 2016-06-17 17:10 +0200

#1425184 — [PATCH 9/9] [RFC] pci: include <asm/dma.h> for isa_dma_bridge_buggy

FromBen Dooks <ben.dooks@codethink.co.uk>
Date2016-06-17 17:10 +0200
Subject[PATCH 9/9] [RFC] pci: include <asm/dma.h> for isa_dma_bridge_buggy
Message-ID<rL3zb-88D-3@gated-at.bofh.it>
At least on arm, <asm/dma.h> does not get included when building
drivers/pci/pci.o. This causes the following build warning which
can be fixed by including <asm/dma.h>:

drivers/pci/pci.c:37:5: warning: symbol 'isa_dma_bridge_buggy' was not declared. Should it be static?

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
---
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: linux-pci@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
---
 drivers/pci/pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 9add285..86b538d 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -26,6 +26,7 @@
 #include <linux/pm_runtime.h>
 #include <linux/pci_hotplug.h>
 #include <asm/setup.h>
+#include <asm/dma.h>
 #include <linux/aer.h>
 #include "pci.h"
 
-- 
2.8.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web