#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/fb.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <asm/io.h>
#include <video/tdfx.h>
Go to the source code of this file.
| #define BANSHEE_MAX_PIXCLOCK 270000 |
| #define DPRINTK |
( |
|
a, |
|
|
|
b... |
|
) |
| pr_debug("fb: %s: " a, __func__ , ## b) |
| #define MTRR_TYPE_WRCOMB 1 |
| #define VOODOO3_MAX_PIXCLOCK 300000 |
| #define VOODOO5_MAX_PIXCLOCK 350000 |
| MODULE_DESCRIPTION |
( |
"3Dfx framebuffer device driver" |
| ) |
|
| MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
tdfxfb_id_table |
|
|
) |
| |
| module_exit |
( |
tdfxfb_exit |
| ) |
|
| module_init |
( |
tdfxfb_init |
| ) |
|
| module_param |
( |
hwcursor |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
| module_param |
( |
mode_option |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |
| MODULE_PARM_DESC |
( |
mode_option |
, |
|
|
"Initial video mode e.g. '648x480-8@60'" |
|
|
) |
| |