diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
commit | 78c388aed2b7184182c08428db1de6c872d815f5 (patch) | |
tree | 4b2003b1b4ceb241a17faa995da8dd1004bb8e45 /drivers/char/specialix_io8.h | |
parent | eb7a5bf93aaa4be1d7c6181100ab7639e74d67f7 (diff) |
Merge with Linux 2.1.131 and more MIPS goodies.
(Did I mention that CVS is buggy ...)
Diffstat (limited to 'drivers/char/specialix_io8.h')
-rw-r--r-- | drivers/char/specialix_io8.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/char/specialix_io8.h b/drivers/char/specialix_io8.h index e8fc54658..f4ca99ea6 100644 --- a/drivers/char/specialix_io8.h +++ b/drivers/char/specialix_io8.h @@ -43,9 +43,16 @@ #ifdef __KERNEL__ -#define SX_NBOARD 4 +/* You can have max 4 ISA cards in one PC, and I recommend not much +more than a few PCI versions of the card. */ + +#define SX_NBOARD 8 + /* NOTE: Specialix decoder recognizes 4 addresses, but only two are used.... */ #define SX_IO_SPACE 4 +/* The PCI version decodes 8 addresses, but still only 2 are used. */ +#define SX_PCI_IO_SPACE 8 + /* eight ports per board. */ #define SX_NPORT 8 #define SX_BOARD(line) ((line) / SX_NPORT) @@ -93,6 +100,7 @@ struct specialix_board { #define SX_BOARD_PRESENT 0x00000001 #define SX_BOARD_ACTIVE 0x00000002 +#define SX_BOARD_IS_PCI 0x00000004 struct specialix_port { |