//========================= Official Notice =============================== // // "This software was developed at the National Institute of Standards // and Technology by employees of the Federal Government in the course of // their official duties. Pursuant to Title 17 Section 105 of the United // States Code this software is not subject to copyright protection and // is in the public domain. // // The NIST Data Flow System (NDFS) is an experimental system and is // offered AS IS. NIST assumes no responsibility whatsoever for its use // by other parties, and makes no guarantees and NO WARRANTIES, EXPRESS // OR IMPLIED, about its quality, reliability, fitness for any purpose, // or any other characteristic. // // We would appreciate acknowledgement if the software is used. // // This software can be redistributed and/or modified freely provided // that any derivative works bear some notice that they are derived from // it, and any modified versions bear some notice that they have been // modified from the original." // //========================================================================= #ifndef __IIADC64_H #define __IIADC64_H #include #define II_MAJOR 121 #define II_RESET _IO(II_MAJOR, 0) #define II_MODE_MEMORY _IO(II_MAJOR, 1) #define II_MODE_RING _IO(II_MAJOR, 2) #define II_MODE_MAILBOX _IOR(II_MAJOR, 3, int) #define II_PCI_TABLE _IOR(II_MAJOR, 4, unsigned int) #define II_RUN _IOR(II_MAJOR, 5, unsigned int) #endif