Commit 2eab7ff8 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven

fbdev: c2p - Rename c2p to c2p_planar

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 96f47d61
...@@ -28,7 +28,7 @@ obj-$(CONFIG_FB_DDC) += fb_ddc.o ...@@ -28,7 +28,7 @@ obj-$(CONFIG_FB_DDC) += fb_ddc.o
obj-$(CONFIG_FB_DEFERRED_IO) += fb_defio.o obj-$(CONFIG_FB_DEFERRED_IO) += fb_defio.o
# Hardware specific drivers go first # Hardware specific drivers go first
obj-$(CONFIG_FB_AMIGA) += amifb.o c2p.o obj-$(CONFIG_FB_AMIGA) += amifb.o c2p_planar.o
obj-$(CONFIG_FB_ARC) += arcfb.o obj-$(CONFIG_FB_ARC) += arcfb.o
obj-$(CONFIG_FB_CLPS711X) += clps711xfb.o obj-$(CONFIG_FB_CLPS711X) += clps711xfb.o
obj-$(CONFIG_FB_CYBER2000) += cyber2000fb.o obj-$(CONFIG_FB_CYBER2000) += cyber2000fb.o
......
...@@ -2159,9 +2159,9 @@ static void amifb_imageblit(struct fb_info *info, const struct fb_image *image) ...@@ -2159,9 +2159,9 @@ static void amifb_imageblit(struct fb_info *info, const struct fb_image *image)
src += pitch; src += pitch;
} }
} else { } else {
c2p(info->screen_base, image->data, dx, dy, width, height, c2p_planar(info->screen_base, image->data, dx, dy, width,
par->next_line, par->next_plane, image->width, height, par->next_line, par->next_plane,
info->var.bits_per_pixel); image->width, info->var.bits_per_pixel);
} }
} }
......
...@@ -10,9 +10,9 @@ ...@@ -10,9 +10,9 @@
#include <linux/types.h> #include <linux/types.h>
extern void c2p(void *dst, const void *src, u32 dx, u32 dy, u32 width, extern void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width,
u32 height, u32 dst_nextline, u32 dst_nextplane, u32 height, u32 dst_nextline, u32 dst_nextplane,
u32 src_nextline, u32 bpp); u32 src_nextline, u32 bpp);
extern void c2p_iplan2(void *dst, const void *src, u32 dx, u32 dy, u32 width, extern void c2p_iplan2(void *dst, const void *src, u32 dx, u32 dy, u32 width,
u32 height, u32 dst_nextline, u32 src_nextline, u32 height, u32 dst_nextline, u32 src_nextline,
......
...@@ -71,7 +71,7 @@ static inline void store_planar_masked(void *dst, u32 dst_inc, u32 bpp, ...@@ -71,7 +71,7 @@ static inline void store_planar_masked(void *dst, u32 dst_inc, u32 bpp,
/* /*
* c2p - Copy 8-bit chunky image data to a planar frame buffer * c2p_planar - Copy 8-bit chunky image data to a planar frame buffer
* @dst: Starting address of the planar frame buffer * @dst: Starting address of the planar frame buffer
* @dx: Horizontal destination offset (in pixels) * @dx: Horizontal destination offset (in pixels)
* @dy: Vertical destination offset (in pixels) * @dy: Vertical destination offset (in pixels)
...@@ -83,8 +83,9 @@ static inline void store_planar_masked(void *dst, u32 dst_inc, u32 bpp, ...@@ -83,8 +83,9 @@ static inline void store_planar_masked(void *dst, u32 dst_inc, u32 bpp,
* @bpp: Bits per pixel of the planar frame buffer (1-8) * @bpp: Bits per pixel of the planar frame buffer (1-8)
*/ */
void c2p(void *dst, const void *src, u32 dx, u32 dy, u32 width, u32 height, void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width,
u32 dst_nextline, u32 dst_nextplane, u32 src_nextline, u32 bpp) u32 height, u32 dst_nextline, u32 dst_nextplane,
u32 src_nextline, u32 bpp)
{ {
union { union {
u8 pixels[32]; u8 pixels[32];
...@@ -150,6 +151,6 @@ void c2p(void *dst, const void *src, u32 dx, u32 dy, u32 width, u32 height, ...@@ -150,6 +151,6 @@ void c2p(void *dst, const void *src, u32 dx, u32 dy, u32 width, u32 height,
dst += dst_nextline; dst += dst_nextline;
} }
} }
EXPORT_SYMBOL_GPL(c2p); EXPORT_SYMBOL_GPL(c2p_planar);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment