#ifndef _ASM_POWERPC_VGA_H_ #define _ASM_POWERPC_VGA_H_ #ifdef __KERNEL__ /* * Access to VGA videoram * * (c) 1998 Martin Mares <mj@ucw.cz> */ #include <asm/io.h> #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_MDA_CONSOLE) #define VT_BUF_HAVE_RW /* * These are only needed for supporting VGA or MDA text mode, which use little * endian byte ordering. * In other cases, we can optimize by using native byte ordering and * <linux/vt_buffer.h> has already done the right job for us. */
static inline void scr_writew(u16 val, volatile u16 *addr) { *addr = cpu_to_le16(val); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 18 | 78.26% | 3 | 60.00% |
David Gibson | 4 | 17.39% | 1 | 20.00% |
Jon Loeliger | 1 | 4.35% | 1 | 20.00% |
Total | 23 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 17 | 85.00% | 3 | 60.00% |
David Gibson | 2 | 10.00% | 1 | 20.00% |
Jon Loeliger | 1 | 5.00% | 1 | 20.00% |
Total | 20 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 93 | 72.66% | 7 | 63.64% |
Jon Loeliger | 23 | 17.97% | 1 | 9.09% |
David Gibson | 6 | 4.69% | 1 | 9.09% |
Björn Helgaas | 5 | 3.91% | 1 | 9.09% |
Michael Ellerman | 1 | 0.78% | 1 | 9.09% |
Total | 128 | 100.00% | 11 | 100.00% |