[PATCH] drivers/video/gbefb.c

From: Giuseppe Sacco
Date: Wed Nov 17 2004 - 19:13:00 EST


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.

Here is a small patch that fixes it. May anyone apply it?

Thanks,
Giuseppe
Index: gbefb.c
===================================================================
RCS file: /home/cvs/linux/drivers/video/gbefb.c,v
retrieving revision 1.11
diff -r1.11 gbefb.c
1121c1121
< char *option = NULL;
---
> char *options = NULL;
1123c1123
< if (fb_get_options("gbefb", &option))
---
> if (fb_get_options("gbefb", &options))