diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-17 21:16:22 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-20 17:24:39 -0700 |
commit | 880e5e212ec5ab12411e40c78bd5ac501e9caeed (patch) | |
tree | 8bc3548818e0fcba698deb1243a42840c245d228 /drivers/video | |
parent | 8468afc039f03837066132be14cdd9e5fa726f0b (diff) |
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 <bunk@kernel.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/c2p.c | 1 |
1 files changed, 1 insertions, 0 deletions
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"); |