diff options
Diffstat (limited to 'sys/i386/scsi/93cx6.h')
-rw-r--r-- | sys/i386/scsi/93cx6.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/i386/scsi/93cx6.h b/sys/i386/scsi/93cx6.h index 6122dca..a80829e 100644 --- a/sys/i386/scsi/93cx6.h +++ b/sys/i386/scsi/93cx6.h @@ -20,7 +20,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: 93cx6.h,v 1.1.2.3 1996/06/08 07:10:44 gibbs Exp $ + * $Id: 93cx6.h,v 1.4 1996/10/25 06:42:50 gibbs Exp $ */ #include <sys/param.h> @@ -28,6 +28,11 @@ #include <sys/systm.h> #endif +typedef enum { + C46 = 6, + C56_66 = 8 +} seeprom_chip_t; + struct seeprom_descriptor { #if defined(__FreeBSD__) u_int32_t sd_iobase; @@ -37,6 +42,7 @@ struct seeprom_descriptor { bus_io_handle_t sd_ioh; bus_io_size_t sd_offset; #endif + seeprom_chip_t sd_chip; u_int16_t sd_MS; u_int16_t sd_RDY; u_int16_t sd_CS; |