Module Name: src
Committed By: jmcneill
Date: Tue Mar 3 23:20:04 UTC 2015
Modified Files:
src/sys/arch/evbarm/amlogic: amlogic_machdep.c
Log Message:
fix build without VERBOSE_INIT_ARM
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbarm/amlogic/amlogic_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/amlogic/amlogic_machdep.c
diff -u src/sys/arch/evbarm/amlogic/amlogic_machdep.c:1.11 src/sys/arch/evbarm/amlogic/amlogic_machdep.c:1.12
--- src/sys/arch/evbarm/amlogic/amlogic_machdep.c:1.11 Tue Mar 3 23:14:41 2015
+++ src/sys/arch/evbarm/amlogic/amlogic_machdep.c Tue Mar 3 23:20:04 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: amlogic_machdep.c,v 1.11 2015/03/03 23:14:41 jmcneill Exp $ */
+/* $NetBSD: amlogic_machdep.c,v 1.12 2015/03/03 23:20:04 jmcneill Exp $ */
/*
* Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,7 +125,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: amlogic_machdep.c,v 1.11 2015/03/03 23:14:41 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: amlogic_machdep.c,v 1.12 2015/03/03 23:20:04 jmcneill Exp $");
#include "opt_machdep.h"
#include "opt_ddb.h"
@@ -633,12 +633,5 @@ amlogic_mpinit(uint32_t mpinit_vec)
if (arm_cpu_hatched == hatched)
break;
}
-
- if (i == 0) {
- const char *msg = "\nWARNING: Some APs failed to start\n";
- const char *p = msg;
- while (*p)
- amlogic_putchar(*p++);
- }
}
#endif