mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
fbdev: vfb: add description to module parameters
Add description to "videomemorysize" and "vfb_enable" module parameters to make them a bit friendly to the end user. Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
b6a694b720
commit
cf957ccc76
@ -35,6 +35,7 @@
|
||||
static void *videomemory;
|
||||
static u_long videomemorysize = VIDEOMEMSIZE;
|
||||
module_param(videomemorysize, ulong, 0);
|
||||
MODULE_PARM_DESC(videomemorysize, "RAM available to frame buffer (in bytes)");
|
||||
|
||||
/**********************************************************************
|
||||
*
|
||||
@ -119,6 +120,7 @@ static struct fb_fix_screeninfo vfb_fix = {
|
||||
|
||||
static bool vfb_enable __initdata = 0; /* disabled by default */
|
||||
module_param(vfb_enable, bool, 0);
|
||||
MODULE_PARM_DESC(vfb_enable, "Enable Virtual FB driver");
|
||||
|
||||
static int vfb_check_var(struct fb_var_screeninfo *var,
|
||||
struct fb_info *info);
|
||||
|
Loading…
Reference in New Issue
Block a user