|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /proc/self/root/proc/self/root/usr/include/linux/ |
Upload File : |
/* * Header for Microchannel Architecture Bus * Written by Martin Kolinek, February 1996 */ #ifndef _LINUX_MCA_H #define _LINUX_MCA_H /* Maximal number of MCA slots - actually, some machines have less, but * they all have sufficient number of POS registers to cover 8. */ #define MCA_MAX_SLOT_NR 8 /* MCA_NOTFOUND is an error condition. The other two indicate * motherboard POS registers contain the adapter. They might be * returned by the mca_find_adapter() function, and can be used as * arguments to mca_read_stored_pos(). I'm not going to allow direct * access to the motherboard registers until we run across an adapter * that requires it. We don't know enough about them to know if it's * safe. * * See Documentation/mca.txt or one of the existing drivers for * more information. */ #define MCA_NOTFOUND (-1) #define MCA_INTEGSCSI (MCA_MAX_SLOT_NR) #define MCA_INTEGVIDEO (MCA_MAX_SLOT_NR+1) #define MCA_MOTHERBOARD (MCA_MAX_SLOT_NR+2) /* Max number of adapters, including both slots and various integrated * things. */ #define MCA_NUMADAPTERS (MCA_MAX_SLOT_NR+3) #endif /* _LINUX_MCA_H */