From 762dbb7160e79065d80b0fcb86b38ca07b8d32c8 Mon Sep 17 00:00:00 2001 From: James Simmons Date: Sat, 12 Apr 2003 03:35:36 -0700 Subject: [FBDEV] Improved speed performance. We copy many bytes of data instead of just one at a time. [IMSTT FBDEV] Fixed a bug that caused the hardware to lock up when scrolling. --- include/linux/fb.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/linux') diff --git a/include/linux/fb.h b/include/linux/fb.h index 654e85f12a16..9c1612ce0710 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h @@ -338,7 +338,8 @@ struct fb_pixmap { __u32 buf_align; /* byte alignment of each bitmap */ __u32 scan_align; /* alignment per scanline */ __u32 flags; /* see FB_PIXMAP_* */ - void (*outbuf)(u8 dst, u8 *addr); /* access methods */ + /* access methods */ + void (*outbuf)(u8 *dst, u8 *addr, unsigned int size); u8 (*inbuf) (u8 *addr); spinlock_t lock; /* spinlock */ atomic_t count; -- cgit v1.2.3