Commit b356ea4b authored by Giuseppe Sacco's avatar Giuseppe Sacco Committed by Linus Torvalds

[PATCH] gbefb.c build fix

The current gbefb.c source cannot be compiled as module because of a small
typo where "option" was written instead of "options" in two places.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1af22f6d
...@@ -1084,9 +1084,9 @@ int __init gbefb_init(void) ...@@ -1084,9 +1084,9 @@ int __init gbefb_init(void)
int i, ret = 0; int i, ret = 0;
#ifndef MODULE #ifndef MODULE
char *option = NULL; char *options = NULL;
if (fb_get_options("gbefb", &option)) if (fb_get_options("gbefb", &options))
return -ENODEV; return -ENODEV;
gbefb_setup(options); gbefb_setup(options);
#endif #endif
......
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