Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic Fix incorrect function names in panic message str...



details:   https://anonhg.NetBSD.org/src/rev/9e69e52e6164
branches:  trunk
changeset: 790998:9e69e52e6164
user:      gson <gson%NetBSD.org@localhost>
date:      Wed Oct 30 08:40:32 2013 +0000

description:
Fix incorrect function names in panic message strings.

diffstat:

 sys/dev/ic/esiop.c |  10 +++++-----
 sys/dev/ic/siop.c  |   6 +++---
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (72 lines):

diff -r b2cd4e5b4b9c -r 9e69e52e6164 sys/dev/ic/esiop.c
--- a/sys/dev/ic/esiop.c        Wed Oct 30 08:39:01 2013 +0000
+++ b/sys/dev/ic/esiop.c        Wed Oct 30 08:40:32 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: esiop.c,v 1.55 2010/11/13 13:52:01 uebayasi Exp $      */
+/*     $NetBSD: esiop.c,v 1.56 2013/10/30 08:40:32 gson Exp $  */
 
 /*
  * Copyright (c) 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.55 2010/11/13 13:52:01 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.56 2013/10/30 08:40:32 gson Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1000,7 +1000,7 @@
                                        return 1;
                                default:
                                        panic("invalid retval from "
-                                           "siop_wdtr_neg()");
+                                           "siop_ppr_neg()");
                                }
                                return 1;
                        }
@@ -1042,7 +1042,7 @@
                                        return 1;
                                default:
                                        panic("invalid retval from "
-                                           "siop_wdtr_neg()");
+                                           "siop_sdtr_neg()");
                                }
                                return 1;
                        }
@@ -1101,7 +1101,7 @@
                return 1;
        }
        /* We just should't get there */
-       panic("siop_intr: I shouldn't be there !");
+       panic("esiop_intr: I shouldn't be there !");
 
 end:
        /*
diff -r b2cd4e5b4b9c -r 9e69e52e6164 sys/dev/ic/siop.c
--- a/sys/dev/ic/siop.c Wed Oct 30 08:39:01 2013 +0000
+++ b/sys/dev/ic/siop.c Wed Oct 30 08:40:32 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siop.c,v 1.98 2010/11/13 13:52:02 uebayasi Exp $       */
+/*     $NetBSD: siop.c,v 1.99 2013/10/30 08:40:32 gson Exp $   */
 
 /*
  * Copyright (c) 2000 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.98 2010/11/13 13:52:02 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.99 2013/10/30 08:40:32 gson Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -884,7 +884,7 @@
                                        return(1);
                                default:
                                        panic("invalid retval from "
-                                           "siop_wdtr_neg()");
+                                           "siop_sdtr_neg()");
                                }
                                return(1);
                        }



Home | Main Index | Thread Index | Old Index