#include <linux/module.h>
#include <linux/errno.h>
#include <linux/delay.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/spinlock.h>
#include <linux/stat.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
#include <linux/dma-mapping.h>
#include <asm/io.h>
#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_tcq.h>
#include "initio.h"
Go to the source code of this file.
| #define DEBUG_INTERRUPT 0 |
| #define i91u_REVID "Initio INI-9X00U/UW SCSI device driver; Revision: 1.04a" |
| #define I920_DEVICE_ID 0x0002 /* Initio's other product ID */ |
| #define I935_DEVICE_ID 0x9401 /* Initio's inic-935 product ID */ |
| #define I940_DEVICE_ID 0x9400 /* Initio's inic-940 product ID */ |
| #define I950_DEVICE_ID 0x9500 /* Initio's inic-950 product ID */ |
| MODULE_AUTHOR |
( |
"Initio Corporation" |
| ) |
|
| MODULE_DESCRIPTION |
( |
"Initio INI-9X00U/UW SCSI device driver" |
| ) |
|
| MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
i91u_pci_devices |
|
|
) |
| |
| MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
initio_pci_tbl |
|
|
) |
| |
| module_exit |
( |
initio_exit_driver |
| ) |
|
| module_init |
( |
initio_init_driver |
| ) |
|