Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283202
b: refs/heads/master
c: 1b34d16
h: refs/heads/master
v: v3
  • Loading branch information
Michael S. Tsirkin committed Nov 28, 2011
1 parent 9feaae6 commit 2b10120
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e5bfb72ce2ce558b5a5a46cc5694001f0479c7f2
refs/heads/master: 1b34d16073430671513b5231fb81cbe725b1a0de
1 change: 1 addition & 0 deletions trunk/arch/microblaze/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ config MICROBLAZE
select HAVE_GENERIC_HARDIRQS
select GENERIC_IRQ_PROBE
select GENERIC_IRQ_SHOW
select GENERIC_PCI_IOMAP

config SWAP
def_bool n
Expand Down
19 changes: 0 additions & 19 deletions trunk/arch/microblaze/pci/iomap.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,6 @@
#include <asm/io.h>
#include <asm/pci-bridge.h>

void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max)
{
resource_size_t start = pci_resource_start(dev, bar);
resource_size_t len = pci_resource_len(dev, bar);
unsigned long flags = pci_resource_flags(dev, bar);

if (!len)
return NULL;
if (max && len > max)
len = max;
if (flags & IORESOURCE_IO)
return ioport_map(start, len);
if (flags & IORESOURCE_MEM)
return ioremap(start, len);
/* What? */
return NULL;
}
EXPORT_SYMBOL(pci_iomap);

void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
{
if (isa_vaddr_is_ioport(addr))
Expand Down

0 comments on commit 2b10120

Please sign in to comment.