Module Name:    src
Committed By:   skrll
Date:           Thu Sep 21 19:28:37 UTC 2017

Modified Files:
        src/sys/arch/arm/fdt: arm_fdt.c

Log Message:
Spaces to TABs


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/fdt/arm_fdt.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/arm/fdt/arm_fdt.c
diff -u src/sys/arch/arm/fdt/arm_fdt.c:1.5 src/sys/arch/arm/fdt/arm_fdt.c:1.6
--- src/sys/arch/arm/fdt/arm_fdt.c:1.5	Thu Aug 24 13:06:23 2017
+++ src/sys/arch/arm/fdt/arm_fdt.c	Thu Sep 21 19:28:37 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: arm_fdt.c,v 1.5 2017/08/24 13:06:23 jmcneill Exp $ */
+/* $NetBSD: arm_fdt.c,v 1.6 2017/09/21 19:28:37 skrll Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared D. McNeill <jmcne...@invisible.ca>
@@ -29,7 +29,7 @@
 #include "opt_arm_timer.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: arm_fdt.c,v 1.5 2017/08/24 13:06:23 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arm_fdt.c,v 1.6 2017/09/21 19:28:37 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -173,8 +173,8 @@ arm_fdt_memory_dump(paddr_t pa)
 	bus_space_map(bst, pa, 0x100, 0, &bsh);
 
 	for (int i = 0; i < 0x100; i += 0x10) {
-                printf("%" PRIxPTR ": %08x %08x %08x %08x\n",
-                    (uintptr_t)(pa + i),
+		printf("%" PRIxPTR ": %08x %08x %08x %08x\n",
+		    (uintptr_t)(pa + i),
 		    bus_space_read_4(bst, bsh, i + 0),
 		    bus_space_read_4(bst, bsh, i + 4),
 		    bus_space_read_4(bst, bsh, i + 8),

Reply via email to