Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/microcode/aic7xxx make sure to strip leading '$' fro...
details: https://anonhg.NetBSD.org/src/rev/d6ca75be6791
branches: trunk
changeset: 1011378:d6ca75be6791
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Sat Jun 27 16:48:01 2020 +0000
description:
make sure to strip leading '$' from NetBSD rcs id so that it won't be
replaces by cvs, and regen the headers again
diffstat:
sys/dev/microcode/aic7xxx/aic7xxx_reg.h | 4 ++--
sys/dev/microcode/aic7xxx/aic7xxx_seq.h | 4 ++--
sys/dev/microcode/aic7xxx/aicasm_gram.y | 5 ++++-
3 files changed, 8 insertions(+), 5 deletions(-)
diffs (48 lines):
diff -r 6ec30d1e553c -r d6ca75be6791 sys/dev/microcode/aic7xxx/aic7xxx_reg.h
--- a/sys/dev/microcode/aic7xxx/aic7xxx_reg.h Sat Jun 27 16:32:46 2020 +0000
+++ b/sys/dev/microcode/aic7xxx/aic7xxx_reg.h Sat Jun 27 16:48:01 2020 +0000
@@ -2,8 +2,8 @@
* DO NOT EDIT - This file is automatically generated
* from the following source files:
*
- * $NetBSD: aic7xxx_reg.h,v 1.4 2020/06/27 16:32:46 jdolecek Exp $
- * $NetBSD: aic7xxx_reg.h,v 1.4 2020/06/27 16:32:46 jdolecek Exp $
+ * NetBSD: aic7xxx.seq,v 1.20 2019/06/04 10:15:22 msaitoh Exp $
+ * NetBSD: aic7xxx.reg,v 1.4 2005/12/11 12:22:18 christos Exp $
*/
typedef int (ahc_reg_print_t)(u_int, u_int *, u_int);
typedef struct ahc_reg_parse_entry {
diff -r 6ec30d1e553c -r d6ca75be6791 sys/dev/microcode/aic7xxx/aic7xxx_seq.h
--- a/sys/dev/microcode/aic7xxx/aic7xxx_seq.h Sat Jun 27 16:32:46 2020 +0000
+++ b/sys/dev/microcode/aic7xxx/aic7xxx_seq.h Sat Jun 27 16:48:01 2020 +0000
@@ -2,8 +2,8 @@
* DO NOT EDIT - This file is automatically generated
* from the following source files:
*
- * $NetBSD: aic7xxx_seq.h,v 1.12 2020/06/27 16:29:11 jdolecek Exp $
- * $NetBSD: aic7xxx_seq.h,v 1.12 2020/06/27 16:29:11 jdolecek Exp $
+ * NetBSD: aic7xxx.seq,v 1.20 2019/06/04 10:15:22 msaitoh Exp $
+ * NetBSD: aic7xxx.reg,v 1.4 2005/12/11 12:22:18 christos Exp $
*/
static uint8_t seqprog[] = {
0xb2, 0x00, 0x00, 0x08,
diff -r 6ec30d1e553c -r d6ca75be6791 sys/dev/microcode/aic7xxx/aicasm_gram.y
--- a/sys/dev/microcode/aic7xxx/aicasm_gram.y Sat Jun 27 16:32:46 2020 +0000
+++ b/sys/dev/microcode/aic7xxx/aicasm_gram.y Sat Jun 27 16:48:01 2020 +0000
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: aicasm_gram.y,v 1.6 2006/11/25 16:48:32 christos Exp $ */
+/* $NetBSD: aicasm_gram.y,v 1.7 2020/06/27 16:48:01 jdolecek Exp $ */
/*
* Parser for the Aic7xxx SCSI Host adapter sequencer assembler.
@@ -1915,6 +1915,9 @@
int newlen;
int oldlen;
+ if (verstring[0] == '$')
+ verstring++;
+
newlen = strlen(verstring) + strlen(prefix);
oldlen = 0;
if (versions != NULL)
Home |
Main Index |
Thread Index |
Old Index