Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/sh3/include Definition of __KERNEL_RCSID for asm fi...



details:   https://anonhg.NetBSD.org/src/rev/34b5141553ab
branches:  trunk
changeset: 555645:34b5141553ab
user:      uwe <uwe%NetBSD.org@localhost>
date:      Mon Nov 24 04:07:22 2003 +0000

description:
Definition of __KERNEL_RCSID for asm files.

diffstat:

 sys/arch/sh3/include/asm.h |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r b99332f98d30 -r 34b5141553ab sys/arch/sh3/include/asm.h
--- a/sys/arch/sh3/include/asm.h        Mon Nov 24 03:33:02 2003 +0000
+++ b/sys/arch/sh3/include/asm.h        Mon Nov 24 04:07:22 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: asm.h,v 1.15 2003/08/27 19:59:57 uwe Exp $     */
+/*     $NetBSD: asm.h,v 1.16 2003/11/24 04:07:22 uwe Exp $     */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -116,6 +116,12 @@
 #define        RCSID(x)        .text; .asciz x
 #endif
 
+#ifdef NO_KERNEL_RCSIDS
+#define        __KERNEL_RCSID(_n, _s)  /* nothing */
+#else
+#define        __KERNEL_RCSID(_n, _s)  RCSID(_s)
+#endif
+
 #ifdef __ELF__
 #define        WEAK_ALIAS(alias,sym)                                           \
        .weak _C_LABEL(alias);                                          \



Home | Main Index | Thread Index | Old Index