diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-07-16 07:46:19 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-07-16 07:46:19 +0000 |
commit | 72c7a95f808a0ca3f9ae2ef3604ac6f9dd40fb30 (patch) | |
tree | f855a52b345a9e168ac23a5767e5995141125842 /sys/arch/arc/dev | |
parent | 5f70aefc7d9a41ec2635c1d255b802a6977b4d41 (diff) |
Rename some 'pica' names to 'mips'.
Diffstat (limited to 'sys/arch/arc/dev')
-rw-r--r-- | sys/arch/arc/dev/pccons.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/arc/dev/pccons.c b/sys/arch/arc/dev/pccons.c index edc39878791..111d47f2fc4 100644 --- a/sys/arch/arc/dev/pccons.c +++ b/sys/arch/arc/dev/pccons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccons.c,v 1.1 1996/06/24 09:07:19 pefo Exp $ */ +/* $OpenBSD: pccons.c,v 1.2 1996/07/16 07:46:16 pefo Exp $ */ /* $NetBSD: pccons.c,v 1.89 1995/05/04 19:35:20 cgd Exp $ */ /*- @@ -1701,11 +1701,11 @@ pcmmap(dev, offset, nprot) { if (offset >= 0xa0000 && offset < 0xc0000) - return pica_btop(PICA_P_LOCAL_VIDEO + offset); + return mips_btop(PICA_P_LOCAL_VIDEO + offset); if (offset >= 0x0000 && offset < 0x10000) - return pica_btop(PICA_P_LOCAL_VIDEO_CTRL + offset); + return mips_btop(PICA_P_LOCAL_VIDEO_CTRL + offset); if (offset >= 0x40000000 && offset < 0x40800000) - return pica_btop(PICA_P_LOCAL_VIDEO + offset - 0x40000000); + return mips_btop(PICA_P_LOCAL_VIDEO + offset - 0x40000000); return -1; } |