Release 4.10 arch/microblaze/pci/iomap.c
/*
* ppc64 "iomap" interface implementation.
*
* (C) Copyright 2004 Linus Torvalds
*/
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/mm.h>
#include <linux/export.h>
#include <linux/io.h>
#include <asm/pci-bridge.h>
void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
{
if (isa_vaddr_is_ioport(addr))
return;
if (pcibios_vaddr_is_ioport(addr))
return;
iounmap(addr);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
michal simek | michal simek | 36 | 100.00% | 1 | 100.00% |
| Total | 36 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(pci_iounmap);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
michal simek | michal simek | 57 | 95.00% | 2 | 66.67% |
paul gortmaker | paul gortmaker | 3 | 5.00% | 1 | 33.33% |
| Total | 60 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.