cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/lib/iomap.c

Directory: arch/sparc/lib
// 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

PersonTokensPropCommitsCommitProp
David S. Miller27100.00%1100.00%
Total27100.00%1100.00%


void ioport_unmap(void __iomem *addr) { /* Nothing to do */ }

Contributors

PersonTokensPropCommitsCommitProp
David S. Miller11100.00%1100.00%
Total11100.00%1100.00%

EXPORT_SYMBOL(ioport_map); EXPORT_SYMBOL(ioport_unmap);
void pci_iounmap(struct pci_dev *dev, void __iomem * addr) { /* nothing to do */ }

Contributors

PersonTokensPropCommitsCommitProp
David S. Miller16100.00%1100.00%
Total16100.00%1100.00%

EXPORT_SYMBOL(pci_iounmap);

Overall Contributors

PersonTokensPropCommitsCommitProp
David S. Miller8098.77%150.00%
Greg Kroah-Hartman11.23%150.00%
Total81100.00%2100.00%
Directory: arch/sparc/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.