Module Name:    src
Committed By:   skrll
Date:           Tue Oct  1 07:48:35 UTC 2013

Modified Files:
        src/sys/arch/evbarm/gemini: gemini_start.S

Log Message:
Appease new gas.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/evbarm/gemini/gemini_start.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/evbarm/gemini/gemini_start.S
diff -u src/sys/arch/evbarm/gemini/gemini_start.S:1.8 src/sys/arch/evbarm/gemini/gemini_start.S:1.9
--- src/sys/arch/evbarm/gemini/gemini_start.S:1.8	Thu Jun 30 20:09:24 2011
+++ src/sys/arch/evbarm/gemini/gemini_start.S	Tue Oct  1 07:48:35 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: gemini_start.S,v 1.8 2011/06/30 20:09:24 wiz Exp $	*/
+/*	$NetBSD: gemini_start.S,v 1.9 2013/10/01 07:48:35 skrll Exp $	*/
 
 /*
  * Machine dependent startup code for GEMINI boards.
@@ -91,20 +91,20 @@
 #include <arm/armreg.h>
 #include "assym.h"
 
-RCSID("$NetBSD: gemini_start.S,v 1.8 2011/06/30 20:09:24 wiz Exp $")
+RCSID("$NetBSD: gemini_start.S,v 1.9 2013/10/01 07:48:35 skrll Exp $")
 
 
 #if defined(VERBOSE_INIT_ARM)
 # define _PUTCHAR(addr, areg, breg, c) 			\
 	ldr	areg, addr;				\
 1:							\
-	ldr	breg, [ areg, #0x14 ];	/* LSR    */	\
+	ldr	breg, [areg, #0x14];	/* LSR    */	\
 	tst	breg, #0x20;		/* TXRDY? */	\
 	beq	1b;					\
 	mov	breg, #(c);		/*   c    */	\
-	str	breg, [ areg ];		/* TXDATA */	\
+	str	breg, [areg];		/* TXDATA */	\
 2:							\
-	ldr	breg, [ areg, #0x14 ];	/* LSR    */	\
+	ldr	breg, [areg, #0x14];	/* LSR    */	\
 	tst	breg, #0x40;		/* TSRE?  */	\
 	beq	2b;
 #else

Reply via email to