projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34f1bde
)
alpha: drop pci_iomap/pci_iounmap from pci-noop.c
author
Michael S. Tsirkin
<mst@redhat.com>
Sun, 4 Dec 2011 13:05:55 +0000
(15:05 +0200)
committer
Michael S. Tsirkin
<mst@redhat.com>
Sun, 4 Dec 2011 14:00:19 +0000
(16:00 +0200)
Jenkins disables PCI so asm-generic provides inline
stubs for these, we don't need offline stubs as well.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
arch/alpha/kernel/pci-noop.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/alpha/kernel/pci-noop.c
b/arch/alpha/kernel/pci-noop.c
index 246100ef07c2474fa5213163b0e1b899d10198a6..04eea4894ef33bc84c60335fc1e79e31553bd328 100644
(file)
--- a/
arch/alpha/kernel/pci-noop.c
+++ b/
arch/alpha/kernel/pci-noop.c
@@
-185,15
+185,3
@@
struct dma_map_ops alpha_noop_ops = {
struct dma_map_ops *dma_ops = &alpha_noop_ops;
EXPORT_SYMBOL(dma_ops);
-
-void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
-{
- return NULL;
-}
-
-void pci_iounmap(struct pci_dev *dev, void __iomem * addr)
-{
-}
-
-EXPORT_SYMBOL(pci_iomap);
-EXPORT_SYMBOL(pci_iounmap);