Module Name: src
Committed By: macallan
Date: Sat Oct 6 14:41:40 UTC 2012
Modified Files:
src/sys/dev/pci: pm2fb.c
Log Message:
don't crash when we're not the console
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/pci/pm2fb.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/dev/pci/pm2fb.c
diff -u src/sys/dev/pci/pm2fb.c:1.20 src/sys/dev/pci/pm2fb.c:1.21
--- src/sys/dev/pci/pm2fb.c:1.20 Thu Oct 4 10:35:54 2012
+++ src/sys/dev/pci/pm2fb.c Sat Oct 6 14:41:40 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: pm2fb.c,v 1.20 2012/10/04 10:35:54 macallan Exp $ */
+/* $NetBSD: pm2fb.c,v 1.21 2012/10/06 14:41:40 macallan Exp $ */
/*
* Copyright (c) 2009, 2012 Michael Lorenz
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pm2fb.c,v 1.20 2012/10/04 10:35:54 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pm2fb.c,v 1.21 2012/10/06 14:41:40 macallan Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -128,6 +128,7 @@ static int pm2fb_putpalreg(struct pm2fb
uint8_t, uint8_t);
static void pm2fb_init(struct pm2fb_softc *);
+static inline void pm2fb_wait(struct pm2fb_softc *, int);
static void pm2fb_flush_engine(struct pm2fb_softc *);
static void pm2fb_rectfill(struct pm2fb_softc *, int, int, int, int,
uint32_t);
@@ -402,16 +403,16 @@ pm2fb_attach(device_t parent, device_t s
} else {
if (sc->sc_console_screen.scr_ri.ri_rows == 0) {
/* do some minimal setup to avoid weirdnesses later */
- glyphcache_init(&sc->sc_gc, sc->sc_height + 5,
+ vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
+ &defattr);
+ }
+ glyphcache_init(&sc->sc_gc, sc->sc_height + 5,
min(2047, (sc->sc_fbsize / sc->sc_stride))
- sc->sc_height - 5,
sc->sc_width,
ri->ri_font->fontwidth,
ri->ri_font->fontheight,
defattr);
- vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
- &defattr);
- }
}
j = 0;