Module Name: src
Committed By: jmcneill
Date: Mon Jul 10 09:44:14 UTC 2017
Modified Files:
src/sys/arch/evbarm/fdt: fdt_machdep.c
Log Message:
port-evbarm/52388: Fix number of args to a debug printf.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbarm/fdt/fdt_machdep.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/evbarm/fdt/fdt_machdep.c
diff -u src/sys/arch/evbarm/fdt/fdt_machdep.c:1.9 src/sys/arch/evbarm/fdt/fdt_machdep.c:1.10
--- src/sys/arch/evbarm/fdt/fdt_machdep.c:1.9 Wed Jul 5 19:30:51 2017
+++ src/sys/arch/evbarm/fdt/fdt_machdep.c Mon Jul 10 09:44:14 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: fdt_machdep.c,v 1.9 2017/07/05 19:30:51 chs Exp $ */
+/* $NetBSD: fdt_machdep.c,v 1.10 2017/07/10 09:44:14 jmcneill Exp $ */
/*-
* Copyright (c) 2015-2017 Jared McNeill <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fdt_machdep.c,v 1.9 2017/07/05 19:30:51 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fdt_machdep.c,v 1.10 2017/07/10 09:44:14 jmcneill Exp $");
#include "opt_machdep.h"
#include "opt_ddb.h"
@@ -186,7 +186,7 @@ fdt_add_reserved_memory_range(uint64_t a
if (error != 0)
printf("MEM ERROR: add %llx-%llx failed: %d\n",
addr, size, error);
- DPRINTF("MEM: res %llx-%llx: %d\n", addr, size);
+ DPRINTF("MEM: res %llx-%llx: %d\n", addr, size, error);
}
/*