|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/string.h>#include <linux/mm.h>#include <linux/delay.h>#include <linux/fb.h>#include <linux/ioport.h>#include <linux/init.h>#include <linux/platform_device.h>#include <linux/screen_info.h>#include <asm/io.h>#include <video/vga.h>Go to the source code of this file.
Data Structures | |
| struct | vga16fb_par |
Macros | |
| #define | VGA_FB_PHYS 0xA0000 |
| #define | VGA_FB_PHYS_LEN 65536 |
| #define | MODE_SKIP4 1 |
| #define | MODE_8BPP 2 |
| #define | MODE_CFB 4 |
| #define | MODE_TEXT 8 |
| #define | FAIL(X) return -EINVAL |
| #define | TRANS_MASK_LOW {0x0,0x8,0x4,0xC,0x2,0xA,0x6,0xE,0x1,0x9,0x5,0xD,0x3,0xB,0x7,0xF} |
| #define | TRANS_MASK_HIGH |
Functions | |
| MODULE_DESCRIPTION ("Legacy VGA framebuffer device driver") | |
| MODULE_LICENSE ("GPL") | |
| module_init (vga16fb_init) | |
| module_exit (vga16fb_exit) | |
| #define TRANS_MASK_HIGH |
| #define TRANS_MASK_LOW {0x0,0x8,0x4,0xC,0x2,0xA,0x6,0xE,0x1,0x9,0x5,0xD,0x3,0xB,0x7,0xF} |
| module_exit | ( | vga16fb_exit | ) |
| module_init | ( | vga16fb_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2