Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/dev/lib Fix cut-and-paste-os in panic messages



details:   https://anonhg.NetBSD.org/src/rev/51daf0147eb4
branches:  trunk
changeset: 778719:51daf0147eb4
user:      gson <gson%NetBSD.org@localhost>
date:      Tue Apr 10 13:45:07 2012 +0000

description:
Fix cut-and-paste-os in panic messages

diffstat:

 sys/rump/dev/lib/libdrvctl/component.c |  6 +++---
 sys/rump/dev/lib/libmd/component.c     |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (52 lines):

diff -r 583c995087e6 -r 51daf0147eb4 sys/rump/dev/lib/libdrvctl/component.c
--- a/sys/rump/dev/lib/libdrvctl/component.c    Tue Apr 10 12:51:31 2012 +0000
+++ b/sys/rump/dev/lib/libdrvctl/component.c    Tue Apr 10 13:45:07 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: component.c,v 1.1 2010/12/07 21:38:07 pooka Exp $      */
+/*     $NetBSD: component.c,v 1.2 2012/04/10 13:45:07 gson Exp $       */
 
 /*
  * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.1 2010/12/07 21:38:07 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.2 2012/04/10 13:45:07 gson Exp $");
 
 #include <sys/param.h>
 #include <sys/conf.h>
@@ -51,5 +51,5 @@
        bmaj = cmaj = NODEVMAJOR;
        if ((error = devsw_attach("drvctl", NULL, &bmaj,
            &drvctl_cdevsw, &cmaj)) != 0)
-               panic("audio devsw attach failed: %d", error);
+               panic("drvctl devsw attach failed: %d", error);
 }
diff -r 583c995087e6 -r 51daf0147eb4 sys/rump/dev/lib/libmd/component.c
--- a/sys/rump/dev/lib/libmd/component.c        Tue Apr 10 12:51:31 2012 +0000
+++ b/sys/rump/dev/lib/libmd/component.c        Tue Apr 10 13:45:07 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: component.c,v 1.1 2010/11/22 21:20:32 pooka Exp $      */
+/*     $NetBSD: component.c,v 1.2 2012/04/10 13:45:08 gson Exp $       */
 
 /*
  * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.1 2010/11/22 21:20:32 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.2 2012/04/10 13:45:08 gson Exp $");
 
 #include <sys/param.h>
 #include <sys/conf.h>
@@ -55,7 +55,7 @@
        bmaj = cmaj = NODEVMAJOR;
        if ((error = devsw_attach("md", &md_bdevsw, &bmaj,
            &md_cdevsw, &cmaj)) != 0)
-               panic("audio devsw attach failed: %d", error);
+               panic("md devsw attach failed: %d", error);
 
        rump_pdev_add(mdattach, 0);
 }



Home | Main Index | Thread Index | Old Index