diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2008-04-28 05:15:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:37 -0400 |
commit | cc6c549c7a9808cc7a8a5afbfa54dbbd2262509d (patch) | |
tree | 5a3ea8d0fc1828bf8f0822ff285b3403c3979a28 /drivers/video/vt8623fb.c | |
parent | cf6d880c358110f986e38114470f41908bc89a12 (diff) |
vt8623fb: change option mode to mode_option
Change the option "mode" into "mode_option".
This is one step toward changing all fb drivers to have common "mode_option"
parameter.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/vt8623fb.c')
-rw-r--r-- | drivers/video/vt8623fb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/vt8623fb.c b/drivers/video/vt8623fb.c index 4c3a63308df1..66305b604ba8 100644 --- a/drivers/video/vt8623fb.c +++ b/drivers/video/vt8623fb.c | |||
@@ -100,7 +100,7 @@ static struct svga_timing_regs vt8623_timing_regs = { | |||
100 | 100 | ||
101 | /* Module parameters */ | 101 | /* Module parameters */ |
102 | 102 | ||
103 | static char *mode = "640x480-8@60"; | 103 | static char *mode_option = "640x480-8@60"; |
104 | 104 | ||
105 | #ifdef CONFIG_MTRR | 105 | #ifdef CONFIG_MTRR |
106 | static int mtrr = 1; | 106 | static int mtrr = 1; |
@@ -110,8 +110,8 @@ MODULE_AUTHOR("(c) 2006 Ondrej Zajicek <santiago@crfreenet.org>"); | |||
110 | MODULE_LICENSE("GPL"); | 110 | MODULE_LICENSE("GPL"); |
111 | MODULE_DESCRIPTION("fbdev driver for integrated graphics core in VIA VT8623 [CLE266]"); | 111 | MODULE_DESCRIPTION("fbdev driver for integrated graphics core in VIA VT8623 [CLE266]"); |
112 | 112 | ||
113 | module_param(mode, charp, 0644); | 113 | module_param(mode_option, charp, 0644); |
114 | MODULE_PARM_DESC(mode, "Default video mode ('640x480-8@60', etc)"); | 114 | MODULE_PARM_DESC(mode_option, "Default video mode ('640x480-8@60', etc)"); |
115 | 115 | ||
116 | #ifdef CONFIG_MTRR | 116 | #ifdef CONFIG_MTRR |
117 | module_param(mtrr, int, 0444); | 117 | module_param(mtrr, int, 0444); |
@@ -722,10 +722,10 @@ static int __devinit vt8623_pci_probe(struct pci_dev *dev, const struct pci_devi | |||
722 | 722 | ||
723 | /* Prepare startup mode */ | 723 | /* Prepare startup mode */ |
724 | 724 | ||
725 | rc = fb_find_mode(&(info->var), info, mode, NULL, 0, NULL, 8); | 725 | rc = fb_find_mode(&(info->var), info, mode_option, NULL, 0, NULL, 8); |
726 | if (! ((rc == 1) || (rc == 2))) { | 726 | if (! ((rc == 1) || (rc == 2))) { |
727 | rc = -EINVAL; | 727 | rc = -EINVAL; |
728 | dev_err(&(dev->dev), "mode %s not found\n", mode); | 728 | dev_err(&(dev->dev), "mode %s not found\n", mode_option); |
729 | goto err_find_mode; | 729 | goto err_find_mode; |
730 | } | 730 | } |
731 | 731 | ||
@@ -913,7 +913,7 @@ static int __init vt8623fb_init(void) | |||
913 | return -ENODEV; | 913 | return -ENODEV; |
914 | 914 | ||
915 | if (option && *option) | 915 | if (option && *option) |
916 | mode = option; | 916 | mode_option = option; |
917 | #endif | 917 | #endif |
918 | 918 | ||
919 | pr_debug("vt8623fb: initializing\n"); | 919 | pr_debug("vt8623fb: initializing\n"); |