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/mgx.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/mgx.c')
-rw-r--r-- | sys/dev/sbus/mgx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/mgx.c b/sys/dev/sbus/mgx.c index 97f380068db..a1439d75771 100644 --- a/sys/dev/sbus/mgx.c +++ b/sys/dev/sbus/mgx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mgx.c,v 1.3 2005/03/03 09:49:06 miod Exp $ */ +/* $OpenBSD: mgx.c,v 1.4 2005/03/07 16:44:52 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -217,7 +217,7 @@ mgxattach(struct device *parent, struct device *self, void *args) sc->sc_sunfb.sf_width, sc->sc_sunfb.sf_height); if (isconsole) { - fbwscons_console_init(&sc->sc_sunfb, -1, mgx_burner); + fbwscons_console_init(&sc->sc_sunfb, -1); } sbus_establish(&sc->sc_sd, &sc->sc_sunfb.sf_dev); |