diff options
author | 2005-02-17 23:07:46 +0000 | |
---|---|---|
committer | 2005-02-17 23:07:46 +0000 | |
commit | 1438129c8e9ab8bd0fc2b51c26fd043366c9488f (patch) | |
tree | 4675d3716f4353679afa2eab511a1457874cc487 | |
parent | whitespace nit (diff) | |
download | wireguard-openbsd-1438129c8e9ab8bd0fc2b51c26fd043366c9488f.tar.xz wireguard-openbsd-1438129c8e9ab8bd0fc2b51c26fd043366c9488f.zip |
untested, no ok, and it broke. revert.
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_lcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_lcd.c b/sys/arch/arm/xscale/pxa2x0_lcd.c index e7c5fc1ee56..c234ccfa63e 100644 --- a/sys/arch/arm/xscale/pxa2x0_lcd.c +++ b/sys/arch/arm/xscale/pxa2x0_lcd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa2x0_lcd.c,v 1.13 2005/02/17 19:24:30 miod Exp $ */ +/* $OpenBSD: pxa2x0_lcd.c,v 1.14 2005/02/17 23:07:46 drahn Exp $ */ /* $NetBSD: pxa2x0_lcd.c,v 1.8 2003/10/03 07:24:05 bsh Exp $ */ /* @@ -624,9 +624,9 @@ pxa2x0_lcd_cnattach(struct pxa2x0_wsscreen_descr *descr, return (error); ri = &pxa2x0_lcd_console.scr.rinfo; + pxa2x0_lcd_setup_rasops(ri, descr, pxa2x0_lcd_console.geometry); ri->ri_hw = (void *)&pxa2x0_lcd_console.scr; ri->ri_bits = pxa2x0_lcd_console.scr.buf_va; - pxa2x0_lcd_setup_rasops(ri, descr, pxa2x0_lcd_console.geometry); /* assumes 16 bpp */ ri->ri_ops.alloc_attr(ri, 0, 0, 0, &defattr); @@ -711,9 +711,9 @@ pxa2x0_lcd_alloc_screen(void *v, const struct wsscreen_descr *_type, * initialize raster operation for this screen. */ ri = &scr->rinfo; + pxa2x0_lcd_setup_rasops(ri, type, sc->geometry); ri->ri_hw = (void *)scr; ri->ri_bits = scr->buf_va; - pxa2x0_lcd_setup_rasops(ri, type, sc->geometry); /* assumes 16 bpp */ ri->ri_ops.alloc_attr(ri, 0, 0, 0, attrp); |