Module Name: src
Committed By: macallan
Date: Wed Mar 27 09:08:38 UTC 2024
Modified Files:
src/sys/arch/hppa/dev: gftfb.c
Log Message:
fix brainfart - only update fbi_fbsize, not the size of the visible fb...
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/hppa/dev/gftfb.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hppa/dev/gftfb.c
diff -u src/sys/arch/hppa/dev/gftfb.c:1.10 src/sys/arch/hppa/dev/gftfb.c:1.11
--- src/sys/arch/hppa/dev/gftfb.c:1.10 Wed Mar 27 06:52:03 2024
+++ src/sys/arch/hppa/dev/gftfb.c Wed Mar 27 09:08:38 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: gftfb.c,v 1.10 2024/03/27 06:52:03 macallan Exp $ */
+/* $NetBSD: gftfb.c,v 1.11 2024/03/27 09:08:38 macallan Exp $ */
/* $OpenBSD: sti_pci.c,v 1.7 2009/02/06 22:51:04 miod Exp $ */
@@ -839,7 +839,6 @@ gftfb_ioctl(void *v, void *vs, u_long cm
int ret;
ret = wsdisplayio_get_fbinfo(&ms->scr_ri, fbi);
- fbi->fbi_height = sc->sc_scr.fbheight;
fbi->fbi_fbsize = sc->sc_scr.fbheight * 2048;
return ret;
}