diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/cirrusfb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/cirrusfb.c b/drivers/video/cirrusfb.c index 30c47f167608..245005e61e40 100644 --- a/drivers/video/cirrusfb.c +++ b/drivers/video/cirrusfb.c | |||
@@ -352,7 +352,7 @@ struct cirrusfb_info { | |||
352 | void (*unmap)(struct fb_info *info); | 352 | void (*unmap)(struct fb_info *info); |
353 | }; | 353 | }; |
354 | 354 | ||
355 | static int noaccel; | 355 | static int noaccel __devinitdata; |
356 | static char *mode_option __devinitdata = "640x480@60"; | 356 | static char *mode_option __devinitdata = "640x480@60"; |
357 | 357 | ||
358 | /****************************************************************************/ | 358 | /****************************************************************************/ |
@@ -2525,6 +2525,8 @@ module_init(cirrusfb_init); | |||
2525 | 2525 | ||
2526 | module_param(mode_option, charp, 0); | 2526 | module_param(mode_option, charp, 0); |
2527 | MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'"); | 2527 | MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'"); |
2528 | module_param(noaccel, bool, 0); | ||
2529 | MODULE_PARM_DESC(noaccel, "Disable acceleration"); | ||
2528 | 2530 | ||
2529 | #ifdef MODULE | 2531 | #ifdef MODULE |
2530 | module_exit(cirrusfb_exit); | 2532 | module_exit(cirrusfb_exit); |