Module Name:    src
Committed By:   skrll
Date:           Sat Nov 19 12:15:22 UTC 2022

Modified Files:
        src/sys/arch/arm/include: bus_funcs.h

Log Message:
Fix _bus_dmamem_alloc_range function declaration - low and high are
paddr_t


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/include/bus_funcs.h

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/arm/include/bus_funcs.h
diff -u src/sys/arch/arm/include/bus_funcs.h:1.11 src/sys/arch/arm/include/bus_funcs.h:1.12
--- src/sys/arch/arm/include/bus_funcs.h:1.11	Sun Jan 24 13:33:56 2021
+++ src/sys/arch/arm/include/bus_funcs.h	Sat Nov 19 12:15:22 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_funcs.h,v 1.11 2021/01/24 13:33:56 martin Exp $	*/
+/*	$NetBSD: bus_funcs.h,v 1.12 2022/11/19 12:15:22 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2001 The NetBSD Foundation, Inc.
@@ -769,7 +769,7 @@ paddr_t	_bus_dmamem_mmap(bus_dma_tag_t t
 int	_bus_dmamem_alloc_range(bus_dma_tag_t tag, bus_size_t size,
 	    bus_size_t alignment, bus_size_t boundary,
 	    bus_dma_segment_t *segs, int nsegs, int *rsegs, int flags,
-	    vaddr_t low, vaddr_t high);
+	    paddr_t low, paddr_t high);
 
 int	_bus_dmatag_subregion(bus_dma_tag_t, bus_addr_t, bus_addr_t,
 	    bus_dma_tag_t *, int);

Reply via email to