The patch titled fdev: export symbol fb_mode_option has been added to the -mm tree. Its filename is fdev-export-symbol-fb_mode_option.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: fdev: export symbol fb_mode_option From: Geoff Levand <geoffrey.levand@xxxxxxxxxxx> 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@xxxxxxxxxxx> Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Cc: Krzysztof Helt <krzysztof.h1@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/modedb.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/video/modedb.c~fdev-export-symbol-fb_mode_option drivers/video/modedb.c --- a/drivers/video/modedb.c~fdev-export-symbol-fb_mode_option +++ a/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) _ Patches currently in -mm which might be from geoffrey.levand@xxxxxxxxxxx are linux-next.patch fdev-export-symbol-fb_mode_option.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html