Release 4.16 arch/arm/include/asm/vga.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ASMARM_VGA_H
#define ASMARM_VGA_H
#include <linux/io.h>
extern unsigned long vga_base;
#define VGA_MAP_MEM(x,s) (vga_base + (x))
#define vga_readb(x) (*((volatile unsigned char *)x))
#define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 32 | 76.19% | 2 | 33.33% |
Rob Herring | 6 | 14.29% | 1 | 16.67% |
Björn Helgaas | 2 | 4.76% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 2.38% | 1 | 16.67% |
Russell King | 1 | 2.38% | 1 | 16.67% |
Total | 42 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.