Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/footbridge Initialize the new _cookie member of...



details:   https://anonhg.NetBSD.org/src/rev/1bc64bf423ad
branches:  trunk
changeset: 550121:1bc64bf423ad
user:      he <he%NetBSD.org@localhost>
date:      Wed Jul 30 17:28:19 2003 +0000

description:
Initialize the new _cookie member of arm32_bus_dma_tag to NULL.

diffstat:

 sys/arch/arm/footbridge/footbridge_pci.c     |  5 +++--
 sys/arch/arm/footbridge/isa/isadma_machdep.c |  5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diffs (52 lines):

diff -r 88a5f58eccd3 -r 1bc64bf423ad sys/arch/arm/footbridge/footbridge_pci.c
--- a/sys/arch/arm/footbridge/footbridge_pci.c  Wed Jul 30 17:27:23 2003 +0000
+++ b/sys/arch/arm/footbridge/footbridge_pci.c  Wed Jul 30 17:28:19 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: footbridge_pci.c,v 1.9 2003/03/23 14:12:25 chris Exp $ */
+/*     $NetBSD: footbridge_pci.c,v 1.10 2003/07/30 17:28:19 he Exp $   */
 
 /*
  * Copyright (c) 1997,1998 Mark Brinicombe.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: footbridge_pci.c,v 1.9 2003/03/23 14:12:25 chris Exp $");
+__KERNEL_RCSID(0, "$NetBSD: footbridge_pci.c,v 1.10 2003/07/30 17:28:19 he Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -102,6 +102,7 @@
 struct arm32_bus_dma_tag footbridge_pci_bus_dma_tag = {
        0,
        0,
+       NULL,
        _bus_dmamap_create, 
        _bus_dmamap_destroy,
        _bus_dmamap_load,
diff -r 88a5f58eccd3 -r 1bc64bf423ad sys/arch/arm/footbridge/isa/isadma_machdep.c
--- a/sys/arch/arm/footbridge/isa/isadma_machdep.c      Wed Jul 30 17:27:23 2003 +0000
+++ b/sys/arch/arm/footbridge/isa/isadma_machdep.c      Wed Jul 30 17:28:19 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isadma_machdep.c,v 1.5 2003/04/01 15:03:36 thorpej Exp $       */
+/*     $NetBSD: isadma_machdep.c,v 1.6 2003/07/30 17:28:20 he Exp $    */
 
 #define ISA_DMA_STATS
 
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.5 2003/04/01 15:03:36 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.6 2003/07/30 17:28:20 he Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -102,6 +102,7 @@
 struct arm32_bus_dma_tag isa_bus_dma_tag = {
        0,                              /* _ranges */
        0,                              /* _nranges */
+       NULL,
        _isa_bus_dmamap_create,
        _isa_bus_dmamap_destroy,
        _isa_bus_dmamap_load,



Home | Main Index | Thread Index | Old Index