From 624dc0c13b4bc51afb3bcd8fbc613ad0d9dd6ef2 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Sat, 16 Oct 1993 17:21:10 +0000 Subject: [PATCH] Removed all patch kit headers, sccsid and rcsid strings, put $Id$ in, some minor cleanup. Added $Id$ to files that did not have any version info, etc --- sys/scsi/README | 2 ++ sys/scsi/scsi_generic.h | 8 +++++--- sys/scsi/st.c | 14 +------------- sys/sys/cdio.h | 2 ++ sys/sys/chio.h | 2 ++ sys/sys/rlist.h | 4 +++- 6 files changed, 15 insertions(+), 17 deletions(-) diff --git a/sys/scsi/README b/sys/scsi/README index b7062eaee0f1..fbd1e6e415c5 100644 --- a/sys/scsi/README +++ b/sys/scsi/README @@ -205,3 +205,5 @@ Addition of code in the tape driver to recognise models of drive that have particular problems so they can be handled specially. many bug-fixes and cleanups. + +$Id$ diff --git a/sys/scsi/scsi_generic.h b/sys/scsi/scsi_generic.h index 338aa516fa44..44f2bd11cfc9 100644 --- a/sys/scsi/scsi_generic.h +++ b/sys/scsi/scsi_generic.h @@ -1,6 +1,3 @@ -#ifndef _SCSI_GENERIC_H_ -#define _SCSI_GENERIC_H_ - /* * Contributed by HD Associates (hd@world.std.com). * Copyright (c) 1992, 1993 HD Associates @@ -35,6 +32,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * from: @(#)stdio.h 5.17 (Berkeley) 6/3/91 + * $Id$ */ /* generic SCSI header file. We use the same minor number format @@ -50,6 +49,9 @@ * III is the SCSI ID (controller) */ +#ifndef _SCSI_GENERIC_H_ +#define _SCSI_GENERIC_H_ + #define G_SCSI_FLAG(DEV) (((DEV) & 0xC0) >> 6) #define G_SCSI_UNIT(DEV) G_SCSI_FLAG(DEV) #define G_SCSI_LUN(DEV) (((DEV) & 0x38) >> 3) diff --git a/sys/scsi/st.c b/sys/scsi/st.c index 0b7dbf20a307..1466544fc71f 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -12,22 +12,10 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * - * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE - * -------------------- ----- ---------------------- - * CURRENT PATCH LEVEL: 1 00098 - * -------------------- ----- ---------------------- - * - * 16 Feb 93 Julian Elischer ADDED for SCSI system - * 1.15 is the last verion to support MACH and OSF/1 - */ -/* $Revision: 1.9 $ */ - -/* * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * major changes by Julian Elischer (julian@jules.dialix.oz.au) May 1993 * - * $Id: st.c,v 1.9 1993/09/20 06:27:06 rgrimes Exp $ + * $Id: st.c,v 1.10 1993/10/11 04:53:23 rgrimes Exp $ */ diff --git a/sys/sys/cdio.h b/sys/sys/cdio.h index fd7109ac4c65..202e8540ac4d 100644 --- a/sys/sys/cdio.h +++ b/sys/sys/cdio.h @@ -1,5 +1,7 @@ /* * 16 Feb 93 Julian Elischer (julian@dialix.oz.au) + * + * $Id$ */ /* Shared between kernel & process */ #ifndef SYS_CDIO_H diff --git a/sys/sys/chio.h b/sys/sys/chio.h index a6c7b91371b5..1106e2f3215b 100644 --- a/sys/sys/chio.h +++ b/sys/sys/chio.h @@ -1,5 +1,7 @@ /* * 16 Feb 93 Julian Elischer ADDED for SCSI system + * + * $Id$ */ /* This is a "convertet" mtio.h from 386BSD diff --git a/sys/sys/rlist.h b/sys/sys/rlist.h index cb664779cd31..e9a41b20bb3b 100644 --- a/sys/sys/rlist.h +++ b/sys/sys/rlist.h @@ -14,7 +14,9 @@ * Usage: * rlist_free(&swapmap, 100, 200); add space to swapmap * rlist_alloc(&swapmap, 100, &loc); obtain 100 sectors from swap - * $Header: /a/cvs/386BSD/src/sys/sys/rlist.h,v 1.2 1993/07/30 10:51:58 jkh Exp $ + * + * from: unknown? + * $Id$ */ #ifndef _SYS_RLIST_H_