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/arch/sparc64/dev/creator.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/arch/sparc64/dev/creator.c')
-rw-r--r-- | sys/arch/sparc64/dev/creator.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/creator.c b/sys/arch/sparc64/dev/creator.c index 46ac93358f0..aa234a112ae 100644 --- a/sys/arch/sparc64/dev/creator.c +++ b/sys/arch/sparc64/dev/creator.c @@ -1,4 +1,4 @@ -/* $OpenBSD: creator.c,v 1.31 2005/01/05 23:04:25 miod Exp $ */ +/* $OpenBSD: creator.c,v 1.32 2005/03/07 16:44:52 miod Exp $ */ /* * Copyright (c) 2002 Jason L. Wright (jason@thought.net) @@ -138,8 +138,7 @@ creator_attach(struct creator_softc *sc) if (sc->sc_console) { sc->sc_sunfb.sf_ro.ri_updatecursor = creator_ras_updatecursor; - fbwscons_console_init(&sc->sc_sunfb, -1, - NULL); + fbwscons_console_init(&sc->sc_sunfb, -1); } fbwscons_attach(&sc->sc_sunfb, &creator_accessops, sc->sc_console); |