Commit 1b126bfe authored by Antonino Daplas's avatar Antonino Daplas Committed by Linus Torvalds

[PATCH] fbdev: Fix source copy bug in neofb

Fix copy system-io copy bug.
Signed-off-by: default avatarAntonino Daplas <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 73399aff
......@@ -1534,7 +1534,7 @@ neo2200_imageblit(struct fb_info *info, const struct fb_image *image)
&par->neo2200->xyExt);
for (i = 0; i < data_len; i++)
writeb(image->data[i], par->mmio_vbase + 0x100000);
writeb(image->data[i], par->mmio_vbase + 0x100000 + i);
}
static void
......
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