summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-04-12 13:14:57 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-04-12 13:14:57 +0000
commitce2e6c1aec00855c97b41c1488c1f7e2cedfb7c0 (patch)
tree72cab8f249758f288bad154ed6c5ab4c8b0cd0b7 /sys
parent21a8d6128707a98bb50b5f029d61d77a4a03626b (diff)
Minor tweaks to appease gcc 3.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/mvme88k/dev/bugio.c4
-rw-r--r--sys/arch/mvme88k/include/m88410.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/dev/bugio.c b/sys/arch/mvme88k/dev/bugio.c
index 3fbbf47412d..f1dbbea4bba 100644
--- a/sys/arch/mvme88k/dev/bugio.c
+++ b/sys/arch/mvme88k/dev/bugio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bugio.c,v 1.12 2004/01/29 00:40:10 miod Exp $ */
+/* $OpenBSD: bugio.c,v 1.13 2004/04/12 13:14:54 miod Exp $ */
/* Copyright (c) 1998 Steve Murphree, Jr. */
#include <sys/param.h>
@@ -17,7 +17,7 @@ void bug_vector(void);
void sysbug_vector(void);
#define MVMEPROM_CALL(x) \
- __asm__ __volatile__ (__CONCAT("or r9,r0,",__STRING(x))); \
+ __asm__ __volatile__ ("or r9,r0," __STRING(x)); \
__asm__ __volatile__ ("tb0 0,r0,496")
void
diff --git a/sys/arch/mvme88k/include/m88410.h b/sys/arch/mvme88k/include/m88410.h
index 2fe22af4771..39cc25e5b29 100644
--- a/sys/arch/mvme88k/include/m88410.h
+++ b/sys/arch/mvme88k/include/m88410.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: m88410.h,v 1.7 2003/10/05 20:27:46 miod Exp $ */
+/* $OpenBSD: m88410.h,v 1.8 2004/04/12 13:14:56 miod Exp $ */
/*
* Copyright (c) 2001 Steve Murphree, Jr.
* All rights reserved.
@@ -181,4 +181,4 @@ mc88410_present(void)
#endif /* _LOCORE */
-#endif __MACHINE_M88410_H__
+#endif /* __MACHINE_M88410_H__ */