#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/init.h>
#include <linux/pci.h>
#include "geodefb.h"
#include "display_gx1.h"
#include "video_cs5530.h"
Go to the source code of this file.
|
| MODULE_DEVICE_TABLE (pci, gx1fb_id_table) |
|
| module_init (gx1fb_init) |
|
| module_exit (gx1fb_cleanup) |
|
| module_param_string (mode, mode_option, sizeof(mode_option), 0444) |
|
| MODULE_PARM_DESC (mode,"video mode (<x>x<y>[-<bpp>][@<refr>])") |
|
| module_param_named (crt, crt_option, int, 0444) |
|
| MODULE_PARM_DESC (crt,"enable CRT output. 0 = off, 1 = on (default)") |
|
| module_param_string (panel, panel_option, sizeof(panel_option), 0444) |
|
| MODULE_PARM_DESC (panel,"size of attached flat panel (<x>x<y>)") |
|
| MODULE_DESCRIPTION ("framebuffer driver for the AMD Geode GX1") |
|
| MODULE_LICENSE ("GPL") |
|
MODULE_DESCRIPTION |
( |
"framebuffer driver for the AMD Geode GX1" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
gx1fb_id_table |
|
|
) |
| |
module_exit |
( |
gx1fb_cleanup |
| ) |
|
module_init |
( |
gx1fb_init |
| ) |
|
module_param_named |
( |
crt |
, |
|
|
crt_option |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param_string |
( |
mode |
, |
|
|
mode_option |
, |
|
|
sizeof(mode_option) |
, |
|
|
0444 |
|
|
) |
| |
module_param_string |
( |
panel |
, |
|
|
panel_option |
, |
|
|
sizeof(panel_option) |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
crt |
, |
|
|
"enable CRT output. |
0 = off |
|
) |
| |
MODULE_PARM_DESC |
( |
panel |
, |
|
|
"size of attached flat panel (<x>x<y>)" |
|
|
) |
| |