Release 4.14 arch/sparc/lib/iomap.c
// SPDX-License-Identifier: GPL-2.0
/*
* Implement the sparc iomap interfaces
*/
#include <linux/pci.h>
#include <linux/module.h>
#include <asm/io.h>
/* Create a virtual mapping cookie for an IO port range */
void __iomem *ioport_map(unsigned long port, unsigned int nr)
{
return (void __iomem *) (unsigned long) port;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
void ioport_unmap(void __iomem *addr)
{
/* Nothing to do */
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(ioport_map);
EXPORT_SYMBOL(ioport_unmap);
void pci_iounmap(struct pci_dev *dev, void __iomem * addr)
{
/* nothing to do */
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(pci_iounmap);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 80 | 98.77% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 1.23% | 1 | 50.00% |
Total | 81 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.