diff options
| author | James Simmons <jsimmons@kozmo.(none)> | 2003-04-12 03:35:36 -0700 |
|---|---|---|
| committer | James Simmons <jsimmons@kozmo.(none)> | 2003-04-12 03:35:36 -0700 |
| commit | 762dbb7160e79065d80b0fcb86b38ca07b8d32c8 (patch) | |
| tree | 47653b864967adcd1e36f970fd2ab64fc1919eac /include/linux | |
| parent | 1fb277a5dfefc2b08d32f108248c6fcd8cc629a9 (diff) | |
[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.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fb.h | 3 |
1 files changed, 2 insertions, 1 deletions
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; |
