Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Nov 2014 12:25:05 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r275322 - head/sys/arm/arm
Message-ID:  <201411301225.sAUCP5C3041867@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Sun Nov 30 12:25:04 2014
New Revision: 275322
URL: https://svnweb.freebsd.org/changeset/base/275322

Log:
  Correctly a few incorrect uses of ENTRY/EENTRY and END/EEND
  
  Sponsored by:	ABT Systems Ltd

Modified:
  head/sys/arm/arm/fusu.S
  head/sys/arm/arm/support.S

Modified: head/sys/arm/arm/fusu.S
==============================================================================
--- head/sys/arm/arm/fusu.S	Sun Nov 30 12:20:24 2014	(r275321)
+++ head/sys/arm/arm/fusu.S	Sun Nov 30 12:25:04 2014	(r275322)
@@ -129,7 +129,7 @@ EENTRY_NP(fuword32)
 	str	r1, [r2, #PCB_ONFAULT]
 	mov	r0, r3
 	RET
-END(fuword32)
+EEND(fuword32)
 END(fuword)
 
 /*
@@ -295,7 +295,7 @@ EENTRY_NP(suword32)
 	mov	r0, #0x00000000
 	str	r0, [r2, #PCB_ONFAULT]
 	RET
-END(suword32)
+EEND(suword32)
 END(suword)
 
 /*

Modified: head/sys/arm/arm/support.S
==============================================================================
--- head/sys/arm/arm/support.S	Sun Nov 30 12:20:24 2014	(r275321)
+++ head/sys/arm/arm/support.S	Sun Nov 30 12:25:04 2014	(r275322)
@@ -130,7 +130,7 @@ ENTRY(bzero)
 .Lnormal0:
 	mov	r3, #0x00
 	b	do_memset
-EEND(bzero)
+END(bzero)
 /* LINTSTUB: Func: void *memset(void *, int, size_t) */
 ENTRY(memset)
 	and	r3, r1, #0xff		/* We deal with bytes */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411301225.sAUCP5C3041867>