Module Name:    src
Committed By:   simonb
Date:           Mon Oct 31 12:49:18 UTC 2022

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

Log Message:
Fix tyop in END for generic_bs_r_8.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/riscv/riscv/bus_space_generic.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/bus_space_generic.S
diff -u src/sys/arch/riscv/riscv/bus_space_generic.S:1.1 src/sys/arch/riscv/riscv/bus_space_generic.S:1.2
--- src/sys/arch/riscv/riscv/bus_space_generic.S:1.1	Sun Sep 11 15:31:12 2022
+++ src/sys/arch/riscv/riscv/bus_space_generic.S	Mon Oct 31 12:49:18 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_space_generic.S,v 1.1 2022/09/11 15:31:12 skrll Exp $	*/
+/*	$NetBSD: bus_space_generic.S,v 1.2 2022/10/31 12:49:18 simonb Exp $	*/
 
 /*-
  * Copyright (c) 2022 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #include <riscv/asm.h>
 #include "assym.h"
 
-RCSID("$NetBSD: bus_space_generic.S,v 1.1 2022/09/11 15:31:12 skrll Exp $")
+RCSID("$NetBSD: bus_space_generic.S,v 1.2 2022/10/31 12:49:18 simonb Exp $")
 
 
 /* void bs_c_1(a0: tag, a1: src, srcoffset, dst, dstoffset, count); */
@@ -85,7 +85,7 @@ ENTRY_NP(generic_bs_r_8)
 	PTR_ADD	a2, a2, a1		/* add to address */
 	ld	a0, 0(a2)		/* load 64-bit */
 	ret
-END(generic_bs_r_4)
+END(generic_bs_r_8)
 #endif
 
 

Reply via email to