Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/evbarm Fix indentation
details: https://anonhg.NetBSD.org/src/rev/52a0717c6816
branches: trunk
changeset: 968572:52a0717c6816
user: skrll <skrll%NetBSD.org@localhost>
date: Mon Jan 20 22:25:07 2020 +0000
description:
Fix indentation
diffstat:
sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c | 6 +++---
sys/arch/evbarm/beagle/beagle_machdep.c | 6 +++---
sys/arch/evbarm/gumstix/gumstix_machdep.c | 4 ++--
sys/arch/evbarm/imx7/imx7_machdep.c | 6 +++---
sys/arch/evbarm/nitrogen6/nitrogen6_machdep.c | 6 +++---
5 files changed, 14 insertions(+), 14 deletions(-)
diffs (126 lines):
diff -r 30703d55111c -r 52a0717c6816 sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c
--- a/sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c Mon Jan 20 22:18:39 2020 +0000
+++ b/sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c Mon Jan 20 22:25:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bcm53xx_machdep.c,v 1.21 2019/07/16 14:41:44 skrll Exp $ */
+/* $NetBSD: bcm53xx_machdep.c,v 1.22 2020/01/20 22:25:07 skrll Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
#define IDM_PRIVATE
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bcm53xx_machdep.c,v 1.21 2019/07/16 14:41:44 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bcm53xx_machdep.c,v 1.22 2020/01/20 22:25:07 skrll Exp $");
#include "opt_arm_debug.h"
#include "opt_console.h"
@@ -256,7 +256,7 @@
}
for (size_t i = 1; i < arm_cpu_max; i++) {
if ((arm_cpu_hatched & __BIT(i)) == 0) {
- printf("%s: warning: cpu%zu failed to hatch\n",
+ printf("%s: warning: cpu%zu failed to hatch\n",
__func__, i);
}
}
diff -r 30703d55111c -r 52a0717c6816 sys/arch/evbarm/beagle/beagle_machdep.c
--- a/sys/arch/evbarm/beagle/beagle_machdep.c Mon Jan 20 22:18:39 2020 +0000
+++ b/sys/arch/evbarm/beagle/beagle_machdep.c Mon Jan 20 22:25:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: beagle_machdep.c,v 1.80 2019/11/23 18:03:57 martin Exp $ */
+/* $NetBSD: beagle_machdep.c,v 1.81 2020/01/20 22:25:07 skrll Exp $ */
/*
* Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,7 +125,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.80 2019/11/23 18:03:57 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.81 2020/01/20 22:25:07 skrll Exp $");
#include "opt_arm_debug.h"
#include "opt_console.h"
@@ -498,7 +498,7 @@
}
for (size_t i = 1; i < arm_cpu_max; i++) {
if ((arm_cpu_hatched & __BIT(i)) == 0) {
- printf("%s: warning: cpu%zu failed to hatch\n",
+ printf("%s: warning: cpu%zu failed to hatch\n",
__func__, i);
}
}
diff -r 30703d55111c -r 52a0717c6816 sys/arch/evbarm/gumstix/gumstix_machdep.c
--- a/sys/arch/evbarm/gumstix/gumstix_machdep.c Mon Jan 20 22:18:39 2020 +0000
+++ b/sys/arch/evbarm/gumstix/gumstix_machdep.c Mon Jan 20 22:25:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gumstix_machdep.c,v 1.63 2019/07/16 14:41:45 skrll Exp $ */
+/* $NetBSD: gumstix_machdep.c,v 1.64 2020/01/20 22:25:07 skrll Exp $ */
/*
* Copyright (C) 2005, 2006, 2007 WIDE Project and SOUM Corporation.
* All rights reserved.
@@ -546,7 +546,7 @@
}
for (size_t i = 1; i < arm_cpu_max; i++) {
if ((arm_cpu_hatched & __BIT(i)) == 0) {
- printf("%s: warning: cpu%zu failed to hatch\n",
+ printf("%s: warning: cpu%zu failed to hatch\n",
__func__, i);
}
}
diff -r 30703d55111c -r 52a0717c6816 sys/arch/evbarm/imx7/imx7_machdep.c
--- a/sys/arch/evbarm/imx7/imx7_machdep.c Mon Jan 20 22:18:39 2020 +0000
+++ b/sys/arch/evbarm/imx7/imx7_machdep.c Mon Jan 20 22:25:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: imx7_machdep.c,v 1.11 2019/07/16 14:41:46 skrll Exp $ */
+/* $NetBSD: imx7_machdep.c,v 1.12 2020/01/20 22:25:07 skrll Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: imx7_machdep.c,v 1.11 2019/07/16 14:41:46 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: imx7_machdep.c,v 1.12 2020/01/20 22:25:07 skrll Exp $");
#include "opt_evbarm_boardtype.h"
#include "opt_arm_debug.h"
@@ -220,7 +220,7 @@
}
for (size_t i = 1; i < arm_cpu_max; i++) {
if ((arm_cpu_hatched & __BIT(i)) == 0) {
- printf("%s: warning: cpu%zu failed to hatch\n",
+ printf("%s: warning: cpu%zu failed to hatch\n",
__func__, i);
}
}
diff -r 30703d55111c -r 52a0717c6816 sys/arch/evbarm/nitrogen6/nitrogen6_machdep.c
--- a/sys/arch/evbarm/nitrogen6/nitrogen6_machdep.c Mon Jan 20 22:18:39 2020 +0000
+++ b/sys/arch/evbarm/nitrogen6/nitrogen6_machdep.c Mon Jan 20 22:25:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: nitrogen6_machdep.c,v 1.18 2019/07/16 14:41:47 skrll Exp $ */
+/* $NetBSD: nitrogen6_machdep.c,v 1.19 2020/01/20 22:25:07 skrll Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nitrogen6_machdep.c,v 1.18 2019/07/16 14:41:47 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nitrogen6_machdep.c,v 1.19 2020/01/20 22:25:07 skrll Exp $");
#include "opt_evbarm_boardtype.h"
#include "opt_arm_debug.h"
@@ -247,7 +247,7 @@
}
for (size_t i = 1; i < arm_cpu_max; i++) {
if ((arm_cpu_hatched & __BIT(i)) == 0) {
- printf("%s: warning: cpu%zu failed to hatch\n",
+ printf("%s: warning: cpu%zu failed to hatch\n",
__func__, i);
}
}
Home |
Main Index |
Thread Index |
Old Index