/* * 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 | 77.37% | 2 | 50.00% |
Rob Herring | 31 | 22.63% | 2 | 50.00% |
Total | 137 | 100.00% | 4 | 100.00% |