From 9391907df1924481e30a9975b4f892c262b6ad6b Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 14 Jul 2003 15:40:37 +0000 Subject: add missing __RCSID() --- sys/dev/microcode/aic7xxx/aicasm.c | 6 +++++- sys/dev/microcode/aic7xxx/aicasm_symbol.c | 5 ++++- sys/dev/microcode/cyclades-z/cyzfirm2h.c | 7 +++++-- sys/dev/microcode/siop/ncr53cxxx.c | 7 +++++-- 4 files changed, 19 insertions(+), 6 deletions(-) (limited to 'sys/dev/microcode') diff --git a/sys/dev/microcode/aic7xxx/aicasm.c b/sys/dev/microcode/aic7xxx/aicasm.c index 1699de0dd5b..7a524748c32 100644 --- a/sys/dev/microcode/aic7xxx/aicasm.c +++ b/sys/dev/microcode/aic7xxx/aicasm.c @@ -1,4 +1,4 @@ -/* $NetBSD: aicasm.c,v 1.4 2003/04/19 19:26:10 fvdl Exp $ */ +/* $NetBSD: aicasm.c,v 1.5 2003/07/14 15:42:39 lukem Exp $ */ /* * Aic7xxx SCSI host adapter firmware asssembler @@ -41,6 +41,10 @@ * * $FreeBSD: src/sys/dev/aic7xxx/aicasm/aicasm.c,v 1.35 2002/08/31 06:39:40 gibbs Exp $ */ + +#include +__RCSID("$NetBSD: aicasm.c,v 1.5 2003/07/14 15:42:39 lukem Exp $"); + #include #include diff --git a/sys/dev/microcode/aic7xxx/aicasm_symbol.c b/sys/dev/microcode/aic7xxx/aicasm_symbol.c index 8b3ee1b71f9..c2176919cc7 100644 --- a/sys/dev/microcode/aic7xxx/aicasm_symbol.c +++ b/sys/dev/microcode/aic7xxx/aicasm_symbol.c @@ -1,4 +1,4 @@ -/* $NetBSD: aicasm_symbol.c,v 1.3 2003/04/19 19:26:11 fvdl Exp $ */ +/* $NetBSD: aicasm_symbol.c,v 1.4 2003/07/14 15:42:40 lukem Exp $ */ /* * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation @@ -42,6 +42,9 @@ * $FreeBSD: src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c,v 1.23 2003/01/20 18:01:37 gibbs Exp $ */ +#include +__RCSID("$NetBSD: aicasm_symbol.c,v 1.4 2003/07/14 15:42:40 lukem Exp $"); + #include #ifdef __linux__ diff --git a/sys/dev/microcode/cyclades-z/cyzfirm2h.c b/sys/dev/microcode/cyclades-z/cyzfirm2h.c index 478e8c79668..d9a1e4cfafd 100644 --- a/sys/dev/microcode/cyclades-z/cyzfirm2h.c +++ b/sys/dev/microcode/cyclades-z/cyzfirm2h.c @@ -1,4 +1,4 @@ -/* $NetBSD: cyzfirm2h.c,v 1.2 2001/02/19 22:48:59 cgd Exp $ */ +/* $NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $ */ /*- * Copyright (c) 2000 Zembu Labs, Inc. @@ -38,6 +38,9 @@ * C header file for use in a device driver. */ +#include +__RCSID("$NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $"); + #include #include #include @@ -96,7 +99,7 @@ main(int argc, char *argv[]) err(1, "unable to mmap input file"); (void) close(i); - fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.2 2001/02/19 22:48:59 cgd Exp $\t*/\n\n"); + fprintf(out_file, "/*\t$NetBSD: cyzfirm2h.c,v 1.3 2003/07/14 15:44:03 lukem Exp $\t*/\n\n"); fprintf(out_file, "\ /* * Firmware for Cyclades Z series multiport serial boards. diff --git a/sys/dev/microcode/siop/ncr53cxxx.c b/sys/dev/microcode/siop/ncr53cxxx.c index db9485719ff..cac79c5505b 100644 --- a/sys/dev/microcode/siop/ncr53cxxx.c +++ b/sys/dev/microcode/siop/ncr53cxxx.c @@ -1,4 +1,4 @@ -/* $NetBSD: ncr53cxxx.c,v 1.11 2003/04/06 09:50:29 tsutsui Exp $ */ +/* $NetBSD: ncr53cxxx.c,v 1.12 2003/07/14 15:44:04 lukem Exp $ */ /* * Copyright (c) 1995,1999 Michael L. Hitch @@ -32,6 +32,9 @@ /* ncr53cxxx.c - SCSI SCRIPTS Assembler */ +#include +__RCSID("$NetBSD: ncr53cxxx.c,v 1.12 2003/07/14 15:44:04 lukem Exp $"); + #include #include #include @@ -415,7 +418,7 @@ main (int argc, char *argv[]) if (outfp) { time_t cur_time; - fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.11 2003/04/06 09:50:29 tsutsui Exp $\t*/\n"); + fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.12 2003/07/14 15:44:04 lukem Exp $\t*/\n"); fprintf(outfp, "/*\n"); fprintf(outfp, " *\tDO NOT EDIT - this file is automatically generated.\n"); time(&cur_time); -- cgit