// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/arm/mm/iomap.c * * Map IO port and PCI memory spaces so that {read,write}[bwl] can * be used to access this memory. */ #include <linux/module.h> #include <linux/pci.h> #include <linux/ioport.h> #include <linux/io.h> unsigned long vga_base; EXPORT_SYMBOL(vga_base); #ifdef __io
void __iomem *ioport_map(unsigned long port, unsigned int nr) { return __io(port); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 9 | 100.00% | 1 | 100.00% |
Total | 9 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 38 | 100.00% | 1 | 100.00% |
Total | 38 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 106 | 76.81% | 2 | 40.00% |
Rob Herring | 31 | 22.46% | 2 | 40.00% |
Greg Kroah-Hartman | 1 | 0.72% | 1 | 20.00% |
Total | 138 | 100.00% | 5 | 100.00% |