Module Name: src
Committed By: jakllsch
Date: Fri Sep 24 20:55:19 UTC 2010
Modified Files:
src/sys/arch/x86/x86: bus_dma.c
Log Message:
fix copy/paste/modify error in a diagnostic panic message
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x86/x86/bus_dma.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/arch/x86/x86/bus_dma.c
diff -u src/sys/arch/x86/x86/bus_dma.c:1.54 src/sys/arch/x86/x86/bus_dma.c:1.55
--- src/sys/arch/x86/x86/bus_dma.c:1.54 Mon Mar 22 22:03:30 2010
+++ src/sys/arch/x86/x86/bus_dma.c Fri Sep 24 20:55:19 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_dma.c,v 1.54 2010/03/22 22:03:30 bouyer Exp $ */
+/* $NetBSD: bus_dma.c,v 1.55 2010/09/24 20:55:19 jakllsch Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2007 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.54 2010/03/22 22:03:30 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.55 2010/09/24 20:55:19 jakllsch Exp $");
/*
* The following is included because _bus_dma_uiomove is derived from
@@ -943,7 +943,7 @@
#ifdef DIAGNOSTIC
if (cookie == NULL)
- panic("_bus_dma_alloc_bouncebuf: no cookie");
+ panic("_bus_dma_free_bouncebuf: no cookie");
#endif
STAT_DECR(nbouncebufs);