Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/samsung Typo in error message.



details:   https://anonhg.NetBSD.org/src/rev/9955dd930b80
branches:  trunk
changeset: 330078:9955dd930b80
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sat Jun 21 09:11:04 2014 +0000

description:
Typo in error message.

diffstat:

 sys/arch/arm/samsung/exynos_usb.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r fb67be393e2b -r 9955dd930b80 sys/arch/arm/samsung/exynos_usb.c
--- a/sys/arch/arm/samsung/exynos_usb.c Sat Jun 21 04:33:53 2014 +0000
+++ b/sys/arch/arm/samsung/exynos_usb.c Sat Jun 21 09:11:04 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_usb.c,v 1.6 2014/06/11 14:54:32 reinoud Exp $   */
+/*     $NetBSD: exynos_usb.c,v 1.7 2014/06/21 09:11:04 skrll Exp $     */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: exynos_usb.c,v 1.6 2014/06/11 14:54:32 reinoud Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_usb.c,v 1.7 2014/06/21 09:11:04 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -299,7 +299,7 @@
        /* attach */
        r = ohci_init(sc);
        if (r != USBD_NORMAL_COMPLETION) {
-               aprint_error_dev(self, "init failed, errpr = %d\n", r);
+               aprint_error_dev(self, "init failed, error = %d\n", r);
                /* disable : TBD */
                return;
        }
@@ -356,7 +356,7 @@
        /* attach */
        r = ehci_init(sc);
        if (r != USBD_NORMAL_COMPLETION) {
-               aprint_error_dev(self, "init failed, errpr = %d\n", r);
+               aprint_error_dev(self, "init failed, error = %d\n", r);
                /* disable : TBD */
                return;
        }



Home | Main Index | Thread Index | Old Index