diff options
author | wollman <wollman@FreeBSD.org> | 1993-11-07 17:51:34 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-11-07 17:51:34 +0000 |
commit | 2aba23834f991af3f08514d55d73d965c4c8bf65 (patch) | |
tree | f73f69f2d329f3b71fb14f0618d8c5a4ec4ee642 /sys/scsi/scsi_cd.h | |
parent | bd2b2815f291360b8d6f823a643e5c9c89064acf (diff) | |
download | FreeBSD-src-2aba23834f991af3f08514d55d73d965c4c8bf65.zip FreeBSD-src-2aba23834f991af3f08514d55d73d965c4c8bf65.tar.gz |
Made all header files idempotent and moved incorrect common data from
headers into a related source file.
Diffstat (limited to 'sys/scsi/scsi_cd.h')
-rw-r--r-- | sys/scsi/scsi_cd.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/scsi/scsi_cd.h b/sys/scsi/scsi_cd.h index eb9bfac..e9e80de 100644 --- a/sys/scsi/scsi_cd.h +++ b/sys/scsi/scsi_cd.h @@ -14,9 +14,12 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id$ + * $Id: scsi_cd.h,v 1.4 1993/08/21 20:01:52 rgrimes Exp $ */ +#ifndef _SCSI_SCSI_CD_H_ +#define _SCSI_SCSI_CD_H_ 1 + /* * Define two bits always in the same place in byte 2 (flag byte) */ @@ -139,7 +142,6 @@ struct scsi_read_toc u_char data_len[2]; u_char control; }; -; struct scsi_read_cd_capacity { @@ -224,3 +226,4 @@ struct cd_mode_data union cd_pages page; }; +#endif /* _SCSI_SCSI_CD_H_ */ |