#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/console.h>
#include <linux/suspend.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/cs5535.h>
#include "gxfb.h"
Go to the source code of this file.
|
| MODULE_DEVICE_TABLE (pci, gxfb_id_table) |
|
| module_init (gxfb_init) |
|
| module_exit (gxfb_cleanup) |
|
| module_param (mode_option, charp, 0) |
|
| MODULE_PARM_DESC (mode_option,"video mode (<x>x<y>[-<bpp>][@<refr>])") |
|
| module_param (vram, int, 0) |
|
| MODULE_PARM_DESC (vram,"video memory size") |
|
| module_param (vt_switch, int, 0) |
|
| MODULE_PARM_DESC (vt_switch,"enable VT switch during suspend/resume") |
|
| MODULE_DESCRIPTION ("Framebuffer driver for the AMD Geode GX") |
|
| MODULE_LICENSE ("GPL") |
|
MODULE_DESCRIPTION |
( |
"Framebuffer driver for the AMD Geode GX" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
gxfb_id_table |
|
|
) |
| |
module_exit |
( |
gxfb_cleanup |
| ) |
|
module_init |
( |
gxfb_init |
| ) |
|
module_param |
( |
mode_option |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
vram |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
vt_switch |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
mode_option |
, |
|
|
"video mode (<x>x<y>[-<bpp>][@<refr>])" |
|
|
) |
| |