eisaconf.h revision 8012
18012Sjulian/*
28012Sjulian * Written by Billie Alsup (balsup@tfs.com)
38012Sjulian * for TRW Financial Systems for use under the MACH(2.5)and OSF/1 operating
48012Sjulian * systems.
58012Sjulian *
68012Sjulian * TRW Financial Systems, in accordance with their agreement with Carnegie
78012Sjulian * Mellon University, makes this software available to CMU to distribute
88012Sjulian * or use in any manner that they see fit as long as this message is kept with
98012Sjulian * the software. For this reason TFS also grants any other persons or
108012Sjulian * organisations permission to use or modify this software.
118012Sjulian *
128012Sjulian * TFS supplies this software to be publicly redistributed
138012Sjulian * on the understanding that TFS is not responsible for the correct
148012Sjulian * functioning of this software in any circumstances.
158012Sjulian *
168012Sjulian * $Id: eisaconf.h,v 1.1 1995/03/13 09:10:17 root Exp root $
178012Sjulian */
188012Sjulian
198012Sjulian/*
208012Sjulian * Ported to run under FreeBSD by Julian Elischer (julian@tfs.com) Sept 1992
218012Sjulian */
228012Sjulian
238012Sjulian#define EISA_SLOTS 10   /* PCI clashes with higher ones.. fix later */
248012Sjulianstruct eisa_dev {
258012Sjulian  char productID[4];
268012Sjulian  unsigned short productType;
278012Sjulian  unsigned char productRevision;
288012Sjulian  unsigned int *imask;
298012Sjulian  struct isa_device isa_dev;
308012Sjulian};
318012Sjulian
32