#include <linux/module.h>
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/blkdev.h>
#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
#include <asm/irq.h>
#include "wd33c93.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("John Shifflett") |
|
| MODULE_DESCRIPTION ("Generic WD33C93 SCSI driver") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (setup_strings, charp, 0) |
|
void | wd33c93_intr (struct Scsi_Host *instance) |
|
int | wd33c93_host_reset (struct scsi_cmnd *SCpnt) |
|
int | wd33c93_abort (struct scsi_cmnd *cmd) |
|
| __setup ("wd33c93=", wd33c93_setup) |
|
void | wd33c93_init (struct Scsi_Host *instance, const wd33c93_regs regs, dma_setup_t setup, dma_stop_t stop, int clock_freq) |
|
int | wd33c93_proc_info (struct Scsi_Host *instance, char *buf, char **start, off_t off, int len, int in) |
|
| EXPORT_SYMBOL (wd33c93_host_reset) |
|
| EXPORT_SYMBOL (wd33c93_init) |
|
| EXPORT_SYMBOL (wd33c93_abort) |
|
| EXPORT_SYMBOL (wd33c93_queuecommand) |
|
| EXPORT_SYMBOL (wd33c93_intr) |
|
| EXPORT_SYMBOL (wd33c93_proc_info) |
|
#define MAX_WD33C93_HOSTS 4 |
#define SETUP_BUFFER_SIZE 200 |
#define WD33C93_DATE "10/Feb/2007" |
#define WD33C93_VERSION "1.26++" |
MODULE_AUTHOR |
( |
"John Shifflett" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Generic WD33C93 SCSI driver" |
| ) |
|
module_param |
( |
setup_strings |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |