Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/arch/pmax/dev Pullup 1.34 [mhitch]:
details: https://anonhg.NetBSD.org/src/rev/82e8fd331faa
branches: netbsd-1-5
changeset: 490099:82e8fd331faa
user: tv <tv%NetBSD.org@localhost>
date: Thu Nov 02 23:43:50 2000 +0000
description:
Pullup 1.34 [mhitch]:
VFB01 framebuffer is 2048 bits wide (but only displays the first 1024 bits
of each scan line). Fix the fi_linebytes value to get the right size.
Fixes the 'compressed' display problem with the 2100/3100 monochrome
display.
diffstat:
sys/arch/pmax/dev/pm.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r b9608ea50d1c -r 82e8fd331faa sys/arch/pmax/dev/pm.c
--- a/sys/arch/pmax/dev/pm.c Thu Nov 02 23:38:22 2000 +0000
+++ b/sys/arch/pmax/dev/pm.c Thu Nov 02 23:43:50 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pm.c,v 1.33 2000/02/03 04:09:15 nisimura Exp $ */
+/* $NetBSD: pm.c,v 1.33.4.1 2000/11/02 23:43:50 tv Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -56,7 +56,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: pm.c,v 1.33 2000/02/03 04:09:15 nisimura Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pm.c,v 1.33.4.1 2000/11/02 23:43:50 tv Exp $");
#include <sys/param.h>
@@ -207,7 +207,7 @@
fi->fi_type.fb_cmsize = 0;
fi->fi_type.fb_size = 0x40000;
fi->fi_pixelsize = (1024 / 8) * 864;
- fi->fi_linebytes = 1024 / 8;
+ fi->fi_linebytes = 2048 / 8;
}
else {
fi->fi_type.fb_boardtype = PMAX_FBTYPE_PM_COLOR;
Home |
Main Index |
Thread Index |
Old Index