From: Adrian Bunk Date: Thu, 17 Jul 2008 19:16:22 +0000 (+0200) Subject: export c2p X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=880e5e212ec5ab12411e40c78bd5ac501e9caeed;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git export c2p This patch fixes the following build error: <-- snip --> .. Building modules, stage 2. MODPOST 1203 modules ERROR: "c2p" [drivers/video/amifb.ko] undefined! .. make[2]: *** [__modpost] Error 1 <-- snip --> Reported-by: Adrian Bunk Signed-off-by: Adrian Bunk Signed-off-by: Geert Uytterhoeven Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/c2p.c b/drivers/video/c2p.c index 03ceb1a5743b..376bc07ff952 100644 --- a/drivers/video/c2p.c +++ b/drivers/video/c2p.c @@ -227,5 +227,6 @@ void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height, dst += dst_nextline; } } +EXPORT_SYMBOL_GPL(c2p); MODULE_LICENSE("GPL");