Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hpcmips Fix typo.



details:   https://anonhg.NetBSD.org/src/rev/79ce0fc8ffbc
branches:  trunk
changeset: 554128:79ce0fc8ffbc
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Sat Oct 25 18:04:34 2003 +0000

description:
Fix typo.

diffstat:

 sys/arch/hpcmips/dev/hpcapm.c |  8 ++++----
 sys/arch/hpcmips/vr/vr.c      |  6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (63 lines):

diff -r 1c4c4e349f68 -r 79ce0fc8ffbc sys/arch/hpcmips/dev/hpcapm.c
--- a/sys/arch/hpcmips/dev/hpcapm.c     Sat Oct 25 17:59:16 2003 +0000
+++ b/sys/arch/hpcmips/dev/hpcapm.c     Sat Oct 25 18:04:34 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hpcapm.c,v 1.16 2003/10/25 17:59:16 mycroft Exp $      */
+/*     $NetBSD: hpcapm.c,v 1.17 2003/10/25 18:04:34 mycroft Exp $      */
 
 /*
  * Copyright (c) 2000 Takemura Shin
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hpcapm.c,v 1.16 2003/10/25 17:59:16 mycroft Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hpcapm.c,v 1.17 2003/10/25 18:04:34 mycroft Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -354,7 +354,7 @@
                         * It sleeps until you push the power button.
                         */
                        __asm(".set noreorder");
-                       __asm(".word    " ___STRING(VR_OPCODE_STANDBY)));
+                       __asm(".word    " ___STRING(VR_OPCODE_STANDBY));
                        __asm("nop");
                        __asm("nop");
                        __asm("nop");
@@ -394,7 +394,7 @@
                         * It sleeps until you push the power button.
                         */
                        __asm(".set noreorder");
-                       __asm(".word    " ___STRING(VR_OPCODE_SUSPEND)));
+                       __asm(".word    " ___STRING(VR_OPCODE_SUSPEND));
                        __asm("nop");
                        __asm("nop");
                        __asm("nop");
diff -r 1c4c4e349f68 -r 79ce0fc8ffbc sys/arch/hpcmips/vr/vr.c
--- a/sys/arch/hpcmips/vr/vr.c  Sat Oct 25 17:59:16 2003 +0000
+++ b/sys/arch/hpcmips/vr/vr.c  Sat Oct 25 18:04:34 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vr.c,v 1.43 2003/10/25 17:59:16 mycroft Exp $  */
+/*     $NetBSD: vr.c,v 1.44 2003/10/25 18:04:34 mycroft Exp $  */
 
 /*-
  * Copyright (c) 1999-2002
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vr.c,v 1.43 2003/10/25 17:59:16 mycroft Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vr.c,v 1.44 2003/10/25 18:04:34 mycroft Exp $");
 
 #include "opt_vr41xx.h"
 #include "opt_tx39xx.h"
@@ -517,7 +517,7 @@
                splhigh();
 #endif
                __asm(".set noreorder");
-               __asm(".word    " ___STRING(VR_OPCODE_SUSPEND)));
+               __asm(".word    " ___STRING(VR_OPCODE_SUSPEND));
                __asm("nop");
                __asm("nop");
                __asm("nop");



Home | Main Index | Thread Index | Old Index