Module Name: src Committed By: dyoung Date: Tue Sep 13 17:59:46 UTC 2011
Modified Files: src/sys/arch/x86/x86: bus_dma.c Log Message: For consistency, call a bus_dma_tag_t bdt instead of bst. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 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.59 src/sys/arch/x86/x86/bus_dma.c:1.60 --- src/sys/arch/x86/x86/bus_dma.c:1.59 Thu Sep 1 15:10:31 2011 +++ src/sys/arch/x86/x86/bus_dma.c Tue Sep 13 17:59:46 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: bus_dma.c,v 1.59 2011/09/01 15:10:31 christos Exp $ */ +/* $NetBSD: bus_dma.c,v 1.60 2011/09/13 17:59:46 dyoung 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.59 2011/09/01 15:10:31 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.60 2011/09/13 17:59:46 dyoung Exp $"); /* * The following is included because _bus_dma_uiomove is derived from @@ -1588,9 +1588,9 @@ } void -bus_dma_tag_destroy(bus_dma_tag_t bst) +bus_dma_tag_destroy(bus_dma_tag_t bdt) { - kmem_free(bst, sizeof(struct x86_bus_dma_tag)); + kmem_free(bdt, sizeof(struct x86_bus_dma_tag)); } int