Module Name:    src
Committed By:   kamil
Date:           Mon Dec  5 07:24:16 UTC 2016

Modified Files:
        src/sys/arch/riscv/riscv: locore.S

Log Message:
Fix cpu_switchto(9) prototype in a comment


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/riscv/riscv/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/riscv/riscv/locore.S
diff -u src/sys/arch/riscv/riscv/locore.S:1.5 src/sys/arch/riscv/riscv/locore.S:1.6
--- src/sys/arch/riscv/riscv/locore.S:1.5	Tue Mar 31 11:53:13 2015
+++ src/sys/arch/riscv/riscv/locore.S	Mon Dec  5 07:24:16 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.S,v 1.5 2015/03/31 11:53:13 matt Exp $ */
+/* $NetBSD: locore.S,v 1.6 2016/12/05 07:24:16 kamil Exp $ */
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -156,7 +156,7 @@ ENTRY_NP(start)
 END(start)
 
 //
-// struct lwp *cpu_switch(struct lwp *oldl, struct lwp *newl, bool returning);
+// struct lwp *cpu_switchto(struct lwp *oldl, struct lwp *newl, bool returning);
 //
 ENTRY_NP(cpu_switchto)
 	addi	sp, sp, -TF_LEN		// allocate trapframe

Reply via email to