make fbmem.c:sys_{in,out}buf() static

From: David Mosberger
Date: Thu May 20 2004 - 01:22:32 EST


As far as I can tell, sys_inbuf() and sys_outbuf() aren't used
anywhere outside of fbmem.c, so make them static.

--david

===== drivers/video/fbmem.c 1.96 vs edited =====
--- 1.96/drivers/video/fbmem.c Wed Apr 21 12:02:56 2004
+++ edited/drivers/video/fbmem.c Wed May 19 22:49:23 2004
@@ -411,12 +411,12 @@
/*
* Drawing helpers.
*/
-u8 sys_inbuf(struct fb_info *info, u8 *src)
+static u8 sys_inbuf(struct fb_info *info, u8 *src)
{
return *src;
}

-void sys_outbuf(struct fb_info *info, u8 *dst, u8 *src, unsigned int size)
+static void sys_outbuf(struct fb_info *info, u8 *dst, u8 *src, unsigned int size)
{
memcpy(dst, src, size);
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/