aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fb/creator.c
diff options
context:
space:
mode:
authorWojciech A. Koszek <wkoszek@FreeBSD.org>2007-12-29 23:26:59 +0000
committerWojciech A. Koszek <wkoszek@FreeBSD.org>2007-12-29 23:26:59 +0000
commit9336e0699bda8a301cd2bfa37106b6ec5e32012e (patch)
tree2208d9a465b1ecf2354401f83d3b431d9003169a /sys/dev/fb/creator.c
parent259699b294163f99205912e9e2ffcd59d1fbf9b8 (diff)
Notes
Diffstat (limited to 'sys/dev/fb/creator.c')
-rw-r--r--sys/dev/fb/creator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fb/creator.c b/sys/dev/fb/creator.c
index 2a346859ccf8..f1a42139a715 100644
--- a/sys/dev/fb/creator.c
+++ b/sys/dev/fb/creator.c
@@ -845,9 +845,9 @@ creator_puts(video_adapter_t *adp, vm_offset_t off, u_int16_t *s, int len)
int i;
for (i = 0; i < len; i++) {
- (*vidsw[adp->va_index]->putc)(adp, off + i, s[i] & 0xff,
- (s[i] & 0xff00) >> 8);
+ vidd_putc(adp, off + i, s[i] & 0xff, (s[i] & 0xff00) >> 8);
}
+
return (0);
}