diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-21 16:18:30 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-21 16:18:30 +0000 |
commit | 519216e2a22fc941f1a42df96b18b0bea226e930 (patch) | |
tree | 976ff92c76e8cf729ddf8ab35acc1c30d9725464 /sys | |
parent | dfd7fd18ccab9bfc197f8f668604063f3d06dcad (diff) |
its obwous``renassiance'' apeers too be a spelink mistaek.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/dev/diodevs | 4 | ||||
-rw-r--r-- | sys/arch/hp300/dev/grf_rb.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/hp300/dev/diodevs b/sys/arch/hp300/dev/diodevs index 85dd90fea46..2dd4c6d784e 100644 --- a/sys/arch/hp300/dev/diodevs +++ b/sys/arch/hp300/dev/diodevs @@ -1,4 +1,4 @@ -$OpenBSD: diodevs,v 1.3 1997/03/07 23:44:39 downsj Exp $ +$OpenBSD: diodevs,v 1.4 2003/03/21 16:18:29 miod Exp $ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -68,7 +68,7 @@ device FRAMEBUFFER 0x39 1 bitmapped display framebuffer GATORBOX 0x01 1 98700/98710 (\"gatorbox\") display framebuffer TOPCAT 0x02 1 98544/98545/98547 (\"topcat\") display -framebuffer RENASSIANCE 0x04 2 98720/98721 (\"renassiance\") display +framebuffer RENAISSANCE 0x04 2 98720/98721 (\"renaissance\") display framebuffer LRCATSEYE 0x05 1 low-res catseye display framebuffer HRCCATSEYE 0x06 1 high-res color catseye display framebuffer HRMCATSEYE 0x07 1 high-res mono catseye display diff --git a/sys/arch/hp300/dev/grf_rb.c b/sys/arch/hp300/dev/grf_rb.c index 2e338f455b0..3646030227f 100644 --- a/sys/arch/hp300/dev/grf_rb.c +++ b/sys/arch/hp300/dev/grf_rb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf_rb.c,v 1.8 2002/03/14 01:26:30 millert Exp $ */ +/* $OpenBSD: grf_rb.c,v 1.9 2003/03/21 16:18:29 miod Exp $ */ /* $NetBSD: grf_rb.c,v 1.11 1997/03/31 07:34:17 scottr Exp $ */ /* @@ -135,7 +135,7 @@ rbox_intio_match(parent, match, aux) return (0); if (grf->gr_id == DIO_DEVICE_ID_FRAMEBUFFER && - grf->gr_id2 == DIO_DEVICE_SECID_RENASSIANCE) { + grf->gr_id2 == DIO_DEVICE_SECID_RENAISSANCE) { ia->ia_addr = (caddr_t)GRFIADDR; return (1); } @@ -169,7 +169,7 @@ rbox_dio_match(parent, match, aux) struct dio_attach_args *da = aux; if (da->da_id == DIO_DEVICE_ID_FRAMEBUFFER && - da->da_secid == DIO_DEVICE_SECID_RENASSIANCE) + da->da_secid == DIO_DEVICE_SECID_RENAISSANCE) return (1); return (0); |