From: "Antonino A. Daplas" Last parameter is file permition in sysfs, not default value. (If 0, file is not accessible trough sysfs, and that's what i did.) Signed-off-by: Domen Puncer Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton --- 25-akpm/drivers/video/i810/i810_main.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff -puN drivers/video/i810/i810_main.c~i810fb-module-param-fix drivers/video/i810/i810_main.c --- 25/drivers/video/i810/i810_main.c~i810fb-module-param-fix Thu Jan 13 15:40:51 2005 +++ 25-akpm/drivers/video/i810/i810_main.c Thu Jan 13 15:40:51 2005 @@ -2003,20 +2003,20 @@ int __init i810fb_init(void) return pci_register_driver(&i810fb_driver); } -module_param(vram, int, 4); +module_param(vram, int, 0); MODULE_PARM_DESC(vram, "System RAM to allocate to framebuffer in MiB" " (default=4)"); module_param(voffset, int, 0); MODULE_PARM_DESC(voffset, "at what offset to place start of framebuffer " "memory (0 to maximum aperture size), in MiB (default = 48)"); -module_param(bpp, int, 8); +module_param(bpp, int, 0); MODULE_PARM_DESC(bpp, "Color depth for display in bits per pixel" " (default = 8)"); -module_param(xres, int, 640); +module_param(xres, int, 0); MODULE_PARM_DESC(xres, "Horizontal resolution in pixels (default = 640)"); -module_param(yres, int, 480); +module_param(yres, int, 0); MODULE_PARM_DESC(yres, "Vertical resolution in scanlines (default = 480)"); -module_param(vyres,int, 480); +module_param(vyres,int, 0); MODULE_PARM_DESC(vyres, "Virtual vertical resolution in scanlines" " (default = 480)"); module_param(hsync1, int, 0); _