diff options
author | Geoff Levand <geoffrey.levand@am.sony.com> | 2008-06-05 22:46:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-06 11:29:12 -0700 |
commit | 659179b28f15ab1b1db5f8767090f5e728f115a1 (patch) | |
tree | b606b1cc7ff3393ff2ab0fd224b2e0675c07c72a | |
parent | 1502cb361666808acb1dfd92238fc2b7a7a48221 (diff) | |
download | kernel_samsung_espresso10-659179b28f15ab1b1db5f8767090f5e728f115a1.zip kernel_samsung_espresso10-659179b28f15ab1b1db5f8767090f5e728f115a1.tar.gz kernel_samsung_espresso10-659179b28f15ab1b1db5f8767090f5e728f115a1.tar.bz2 |
fbdev: export symbol fb_mode_option
Frame buffer and mode setting drivers can be built as modules,
so fb_mode_option needs to be exported to support these.
Prevents this error:
ERROR: "fb_mode_option" [drivers/ps3/ps3av_mod.ko] undefined!
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/video/modedb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c index d1bbef9..d3c3af5 100644 --- a/drivers/video/modedb.c +++ b/drivers/video/modedb.c @@ -28,6 +28,7 @@ #endif const char *fb_mode_option; +EXPORT_SYMBOL_GPL(fb_mode_option); /* * Standard video mode definitions (taken from XFree86) |