Module Name:    src
Committed By:   matt
Date:           Fri Aug 21 17:35:43 UTC 2009

Modified Files:
        src/sys/arch/mips/mips [matt-nb5-mips64]: bus_dma.c

Log Message:
Use PRIxPADDR


To generate a diff of this commit:
cvs rdiff -u -r1.22.16.1 -r1.22.16.2 src/sys/arch/mips/mips/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/mips/mips/bus_dma.c
diff -u src/sys/arch/mips/mips/bus_dma.c:1.22.16.1 src/sys/arch/mips/mips/bus_dma.c:1.22.16.2
--- src/sys/arch/mips/mips/bus_dma.c:1.22.16.1	Wed Aug 19 07:41:47 2009
+++ src/sys/arch/mips/mips/bus_dma.c	Fri Aug 21 17:35:43 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_dma.c,v 1.22.16.1 2009/08/19 07:41:47 matt Exp $	*/
+/*	$NetBSD: bus_dma.c,v 1.22.16.2 2009/08/21 17:35:43 matt Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 2001 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.22.16.1 2009/08/19 07:41:47 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.22.16.2 2009/08/21 17:35:43 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -586,7 +586,7 @@
 #ifdef DIAGNOSTIC
 		if (curaddr < low || curaddr >= high) {
 			printf("uvm_pglistalloc returned non-sensical"
-			    " address 0x%llx\n", (uint64_t)curaddr);
+			    " address 0x%"PRIxPADDR"\n", curaddr);
 			panic("_bus_dmamem_alloc");
 		}
 #endif

Reply via email to