diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-03-07 16:44:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-03-07 16:44:54 +0000 |
commit | ad74bb04b21760e9777828f3672af310f0f17929 (patch) | |
tree | 3e00e1b8db1d1589376c9460fbaf25fd0391cbf4 /sys/dev/sbus/zx.c | |
parent | e2342454212ad6610db13731b4cbd2dc7c61929a (diff) |
Do not bother passing the blanking routine to fbwscons_console_init(),
as fbwscons_attach() can find it on its own.
Diffstat (limited to 'sys/dev/sbus/zx.c')
-rw-r--r-- | sys/dev/sbus/zx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/zx.c b/sys/dev/sbus/zx.c index 3c411c63910..b676b4eed59 100644 --- a/sys/dev/sbus/zx.c +++ b/sys/dev/sbus/zx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zx.c,v 1.4 2005/03/01 21:21:25 miod Exp $ */ +/* $OpenBSD: zx.c,v 1.5 2005/03/07 16:44:53 miod Exp $ */ /* $NetBSD: zx.c,v 1.5 2002/10/02 16:52:46 thorpej Exp $ */ /* @@ -308,7 +308,7 @@ zx_attach(struct device *parent, struct device *self, void *args) if (isconsole) { /* zx_reset() below will clear screen, so restart at 1st row */ - fbwscons_console_init(&sc->sc_sunfb, 0, zx_burner); + fbwscons_console_init(&sc->sc_sunfb, 0); } /* reset cursor & frame buffer controls */ |