Commit 07f41e45 authored by Krzysztof Helt's avatar Krzysztof Helt Committed by Linus Torvalds

tridentfb: change option mode to mode_option

Change the option "mode_option" into "mode".  It also adds __init attribute to
tridentfb_setup function.

This is one step toward changing all fb drivers to have common "mode_option"
parameter.
Signed-off-by: default avatarKrzysztof Helt <krzysztof.h1@wp.pl>
Cc: Alain Kalker <miki@dds.nl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5eb81e80
...@@ -58,7 +58,7 @@ static int displaytype; ...@@ -58,7 +58,7 @@ static int displaytype;
/* defaults which are normally overriden by user values */ /* defaults which are normally overriden by user values */
/* video mode */ /* video mode */
static char *mode = "640x480"; static char *mode_option __devinitdata = "640x480";
static int bpp = 8; static int bpp = 8;
static int noaccel; static int noaccel;
...@@ -73,7 +73,8 @@ static int memsize; ...@@ -73,7 +73,8 @@ static int memsize;
static int memdiff; static int memdiff;
static int nativex; static int nativex;
module_param(mode, charp, 0); module_param(mode_option, charp, 0);
MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'");
module_param(bpp, int, 0); module_param(bpp, int, 0);
module_param(center, int, 0); module_param(center, int, 0);
module_param(stretch, int, 0); module_param(stretch, int, 0);
...@@ -1297,7 +1298,8 @@ static int __devinit trident_pci_probe(struct pci_dev * dev, ...@@ -1297,7 +1298,8 @@ static int __devinit trident_pci_probe(struct pci_dev * dev,
#endif #endif
fb_info.pseudo_palette = pseudo_pal; fb_info.pseudo_palette = pseudo_pal;
if (!fb_find_mode(&default_var, &fb_info, mode, NULL, 0, NULL, bpp)) { if (!fb_find_mode(&default_var, &fb_info,
mode_option, NULL, 0, NULL, bpp)) {
err = -EINVAL; err = -EINVAL;
goto out_unmap2; goto out_unmap2;
} }
...@@ -1385,7 +1387,7 @@ static struct pci_driver tridentfb_pci_driver = { ...@@ -1385,7 +1387,7 @@ static struct pci_driver tridentfb_pci_driver = {
* video=trident:800x600,bpp=16,noaccel * video=trident:800x600,bpp=16,noaccel
*/ */
#ifndef MODULE #ifndef MODULE
static int tridentfb_setup(char *options) static int __init tridentfb_setup(char *options)
{ {
char *opt; char *opt;
if (!options || !*options) if (!options || !*options)
...@@ -1412,7 +1414,7 @@ static int tridentfb_setup(char *options) ...@@ -1412,7 +1414,7 @@ static int tridentfb_setup(char *options)
else if (!strncmp(opt, "nativex=", 8)) else if (!strncmp(opt, "nativex=", 8))
nativex = simple_strtoul(opt + 8, NULL, 0); nativex = simple_strtoul(opt + 8, NULL, 0);
else else
mode = opt; mode_option = opt;
} }
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment