diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-20 08:32:21 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-20 08:32:21 +0000 |
commit | df71df1780a87be9af4be1b2d9e104868296263a (patch) | |
tree | a0b95a162c16c0d9336c7c51accff1b6654b4dac /sys/dev | |
parent | 942e2f634824965a8aeb057948288a43660df9db (diff) |
better default screen init
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/sti.c | 41 | ||||
-rw-r--r-- | sys/dev/ic/stivar.h | 5 |
2 files changed, 23 insertions, 23 deletions
diff --git a/sys/dev/ic/sti.c b/sys/dev/ic/sti.c index 44bdd7838f3..c7321d4392b 100644 --- a/sys/dev/ic/sti.c +++ b/sys/dev/ic/sti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sti.c,v 1.4 2001/02/16 19:08:42 mickey Exp $ */ +/* $OpenBSD: sti.c,v 1.5 2001/03/20 08:32:20 mickey Exp $ */ /* * Copyright (c) 2000-2001 Michael Shalayeff @@ -98,6 +98,22 @@ const struct wsdisplay_accessops sti_accessops = { sti_load_font }; +struct wsscreen_descr sti_default_screen = { + "default", 0, 0, + &sti_emulops, + 0, 0, + WSSCREEN_REVERSE | WSSCREEN_UNDERLINE +}; + +const struct wsscreen_descr *sti_default_scrlist[] = { + &sti_default_screen +}; + +struct wsscreen_list sti_default_screenlist = { + sizeof(sti_default_scrlist) / sizeof(sti_default_scrlist[0]), + sti_default_scrlist +}; + enum sti_bmove_funcs { bmf_clear, bmf_copy, bmf_invert, bmf_underline }; @@ -113,7 +129,6 @@ sti_attach_common(sc) { struct sti_inqconfout cfg; bus_space_handle_t fbh; - struct wsscreen_descr **sl; struct wsemuldisplaydev_attach_args waa; struct sti_dd *dd; struct sti_cfg *cc; @@ -329,26 +344,14 @@ sti_attach_common(sc) * calculate dimentions. */ - MALLOC(sc->sc_screens, struct wsscreen_descr *, - 1*sizeof(*sc->sc_screens), M_DEVBUF, M_NOWAIT); - MALLOC(sl, struct wsscreen_descr **, - 1*sizeof(sc->sc_screens), M_DEVBUF, M_NOWAIT); - - sl[0] = &sc->sc_screens[0]; - sc->sc_screens[0].name = "default"; - sc->sc_screens[0].ncols = cfg.width / ff->width; - sc->sc_screens[0].nrows = cfg.height / ff->height; - sc->sc_screens[0].textops = &sti_emulops; - sc->sc_screens[0].fontwidth = ff->width; - sc->sc_screens[0].fontheight = ff->height; - sc->sc_screens[0].capabilities = WSSCREEN_REVERSE | WSSCREEN_UNDERLINE; - - sc->sti_screenlist.nscreens = 1; - sc->sti_screenlist.screens = (const struct wsscreen_descr **)sl; + sti_default_screen.ncols = cfg.width / ff->width; + sti_default_screen.nrows = cfg.height / ff->height; + sti_default_screen.fontwidth = ff->width; + sti_default_screen.fontheight = ff->height; /* attach WSDISPLAY */ waa.console = sc->sc_dev.dv_unit; - waa.scrdata = &sc->sti_screenlist; + waa.scrdata = &sti_default_screenlist; waa.accessops = &sti_accessops; waa.accesscookie = sc; diff --git a/sys/dev/ic/stivar.h b/sys/dev/ic/stivar.h index ad660624fe6..73816dbae2d 100644 --- a/sys/dev/ic/stivar.h +++ b/sys/dev/ic/stivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stivar.h,v 1.2 2001/01/11 21:30:30 mickey Exp $ */ +/* $OpenBSD: stivar.h,v 1.3 2001/03/20 08:32:20 mickey Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -54,9 +54,6 @@ struct sti_softc { struct sti_ecfg sc_ecfg; struct sti_fontcfg sc_fontcfg; - struct wsscreen_descr *sc_screens; - struct wsscreen_list sti_screenlist; - vaddr_t sc_code; sti_init_t init; |