Module Name: src
Committed By: gson
Date: Wed Oct 30 08:40:32 UTC 2013
Modified Files:
src/sys/dev/ic: esiop.c siop.c
Log Message:
Fix incorrect function names in panic message strings.
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/ic/esiop.c
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/ic/siop.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/esiop.c
diff -u src/sys/dev/ic/esiop.c:1.55 src/sys/dev/ic/esiop.c:1.56
--- src/sys/dev/ic/esiop.c:1.55 Sat Nov 13 13:52:01 2010
+++ src/sys/dev/ic/esiop.c Wed Oct 30 08:40:32 2013
@@ -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 @@ scintr:
return 1;
default:
panic("invalid retval from "
- "siop_wdtr_neg()");
+ "siop_ppr_neg()");
}
return 1;
}
@@ -1042,7 +1042,7 @@ scintr:
return 1;
default:
panic("invalid retval from "
- "siop_wdtr_neg()");
+ "siop_sdtr_neg()");
}
return 1;
}
@@ -1101,7 +1101,7 @@ scintr:
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:
/*
Index: src/sys/dev/ic/siop.c
diff -u src/sys/dev/ic/siop.c:1.98 src/sys/dev/ic/siop.c:1.99
--- src/sys/dev/ic/siop.c:1.98 Sat Nov 13 13:52:02 2010
+++ src/sys/dev/ic/siop.c Wed Oct 30 08:40:32 2013
@@ -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 @@ scintr:
return(1);
default:
panic("invalid retval from "
- "siop_wdtr_neg()");
+ "siop_sdtr_neg()");
}
return(1);
}