Module Name: src Committed By: skrll Date: Sun Jul 14 09:29:21 UTC 2019
Modified Files: src/sys/arch/arm/arm32: locore.S src/sys/arch/hpcarm/hpcarm: locore.S Log Message: Spell initarm correctly in comments To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/sys/arch/arm/arm32/locore.S cvs rdiff -u -r1.18 -r1.19 src/sys/arch/hpcarm/hpcarm/locore.S 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/arm32/locore.S diff -u src/sys/arch/arm/arm32/locore.S:1.39 src/sys/arch/arm/arm32/locore.S:1.40 --- src/sys/arch/arm/arm32/locore.S:1.39 Thu Oct 18 09:01:52 2018 +++ src/sys/arch/arm/arm32/locore.S Sun Jul 14 09:29:21 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: locore.S,v 1.39 2018/10/18 09:01:52 skrll Exp $ */ +/* $NetBSD: locore.S,v 1.40 2019/07/14 09:29:21 skrll Exp $ */ /* * Copyright (C) 1994-1997 Mark Brinicombe @@ -43,7 +43,7 @@ /* What size should this really be ? It is only used by init_arm() */ #define INIT_ARM_STACK_SIZE 2048 - RCSID("$NetBSD: locore.S,v 1.39 2018/10/18 09:01:52 skrll Exp $") + RCSID("$NetBSD: locore.S,v 1.40 2019/07/14 09:29:21 skrll Exp $") /* * This is for kvm_mkdb, and should be the address of the beginning @@ -92,7 +92,7 @@ ASENTRY_NP(start) mov fp, #0x00000000 /* trace back starts here */ bl _C_LABEL(initarm) /* Off we go */ - /* init arm will return the new stack pointer. */ + /* initarm will return the new stack pointer. */ mov sp, r0 mov fp, #0x00000000 /* trace back starts here */ Index: src/sys/arch/hpcarm/hpcarm/locore.S diff -u src/sys/arch/hpcarm/hpcarm/locore.S:1.18 src/sys/arch/hpcarm/hpcarm/locore.S:1.19 --- src/sys/arch/hpcarm/hpcarm/locore.S:1.18 Sun Mar 2 13:26:30 2014 +++ src/sys/arch/hpcarm/hpcarm/locore.S Sun Jul 14 09:29:21 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: locore.S,v 1.18 2014/03/02 13:26:30 joerg Exp $ */ +/* $NetBSD: locore.S,v 1.19 2019/07/14 09:29:21 skrll Exp $ */ /* * Copyright (C) 1994-1997 Mark Brinicombe @@ -160,7 +160,7 @@ ASENTRY_NP(hpc_start) mov fp, #0x00000000 /* trace back starts here */ bl _C_LABEL(initarm) /* Off we go */ - /* init arm will return the new stack pointer. */ + /* initarm will return the new stack pointer. */ mov sp, r0 mov fp, #0x00000000 /* trace back starts here */