Commit c9bb1e5d authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fbmem: rename sys_inbuf() and sys_outbuf()

From: David Mosberger <davidm@napali.hpl.hp.com>

These aren't syscalls, so rename them.  And make them static.
parent bd105032
...@@ -426,12 +426,13 @@ static int ofonly __initdata = 0; ...@@ -426,12 +426,13 @@ static int ofonly __initdata = 0;
/* /*
* Drawing helpers. * Drawing helpers.
*/ */
u8 sys_inbuf(struct fb_info *info, u8 *src) static u8 fb_sys_inbuf(struct fb_info *info, u8 *src)
{ {
return *src; return *src;
} }
void sys_outbuf(struct fb_info *info, u8 *dst, u8 *src, unsigned int size) static void fb_sys_outbuf(struct fb_info *info, u8 *dst,
u8 *src, unsigned int size)
{ {
memcpy(dst, src, size); memcpy(dst, src, size);
} }
...@@ -1306,9 +1307,9 @@ register_framebuffer(struct fb_info *fb_info) ...@@ -1306,9 +1307,9 @@ register_framebuffer(struct fb_info *fb_info)
} }
fb_info->pixmap.offset = 0; fb_info->pixmap.offset = 0;
if (fb_info->pixmap.outbuf == NULL) if (fb_info->pixmap.outbuf == NULL)
fb_info->pixmap.outbuf = sys_outbuf; fb_info->pixmap.outbuf = fb_sys_outbuf;
if (fb_info->pixmap.inbuf == NULL) if (fb_info->pixmap.inbuf == NULL)
fb_info->pixmap.inbuf = sys_inbuf; fb_info->pixmap.inbuf = fb_sys_inbuf;
if (fb_info->sprite.addr == NULL) { if (fb_info->sprite.addr == NULL) {
fb_info->sprite.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL); fb_info->sprite.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
...@@ -1322,9 +1323,9 @@ register_framebuffer(struct fb_info *fb_info) ...@@ -1322,9 +1323,9 @@ register_framebuffer(struct fb_info *fb_info)
} }
fb_info->sprite.offset = 0; fb_info->sprite.offset = 0;
if (fb_info->sprite.outbuf == NULL) if (fb_info->sprite.outbuf == NULL)
fb_info->sprite.outbuf = sys_outbuf; fb_info->sprite.outbuf = fb_sys_outbuf;
if (fb_info->sprite.inbuf == NULL) if (fb_info->sprite.inbuf == NULL)
fb_info->sprite.inbuf = sys_inbuf; fb_info->sprite.inbuf = fb_sys_inbuf;
registered_fb[i] = fb_info; registered_fb[i] = fb_info;
......
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