Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/fdt Match non-standard compat string "arm, armv8...



details:   https://anonhg.NetBSD.org/src/rev/5935b86ebecd
branches:  trunk
changeset: 835720:5935b86ebecd
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Wed Sep 05 10:38:29 2018 +0000

description:
Match non-standard compat string "arm,armv8" (should be "arm,arm-v8")

diffstat:

 sys/arch/arm/fdt/cpu_fdt.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 2929c2cd92a2 -r 5935b86ebecd sys/arch/arm/fdt/cpu_fdt.c
--- a/sys/arch/arm/fdt/cpu_fdt.c        Wed Sep 05 10:20:47 2018 +0000
+++ b/sys/arch/arm/fdt/cpu_fdt.c        Wed Sep 05 10:38:29 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_fdt.c,v 1.9 2018/08/26 18:15:49 ryo Exp $ */
+/* $NetBSD: cpu_fdt.c,v 1.10 2018/09/05 10:38:29 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_fdt.c,v 1.9 2018/08/26 18:15:49 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_fdt.c,v 1.10 2018/09/05 10:38:29 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -68,6 +68,7 @@
        { "arm,cortex-a15",             ARM_CPU_ARMV7 },
        { "arm,cortex-a17",             ARM_CPU_ARMV7 },
 
+       { "arm,armv8",                  ARM_CPU_ARMV8 },        /* nonstandard */
        { "arm,arm-v8",                 ARM_CPU_ARMV8 },
        { "arm,cortex-a53",             ARM_CPU_ARMV8 },
        { "arm,cortex-a57",             ARM_CPU_ARMV8 },



Home | Main Index | Thread Index | Old Index