#include <linux/module.h>
#include <linux/version.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/pci.h>
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/in.h>
#include <linux/proc_fs.h>
#include <linux/time.h>
#include <linux/timer.h>
#include <linux/dma-mapping.h>
#include <linux/list.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/reboot.h>
#include <asm/dma.h>
#include <asm/io.h>
#include <asm/uaccess.h>
#include <linux/spinlock.h>
#include <linux/blkdev.h>
#include <linux/scatterlist.h>
#include "scsi.h"
#include <scsi/scsi_host.h>
#include "gdth.h"
#include "gdth_proc.h"
#include "gdth_proc.c"
Go to the source code of this file.
|
| module_param_array (irq, int, NULL, 0) |
|
| module_param (disable, int, 0) |
|
| module_param (reserve_mode, int, 0) |
|
| module_param_array (reserve_list, int, NULL, 0) |
|
| module_param (reverse_scan, int, 0) |
|
| module_param (hdr_channel, int, 0) |
|
| module_param (max_ids, int, 0) |
|
| module_param (rescan, int, 0) |
|
| module_param (shared_access, int, 0) |
|
| module_param (probe_eisa_isa, int, 0) |
|
| module_param (force_dma32, int, 0) |
|
| MODULE_AUTHOR ("Achim Leubner") |
|
| MODULE_LICENSE ("GPL") |
|
int | __gdth_execute (struct scsi_device *sdev, gdth_cmd_str *gdtcmd, char *cmnd, int timeout, u32 *info) |
|
int | gdth_execute (struct Scsi_Host *shost, gdth_cmd_str *gdtcmd, char *cmnd, int timeout, u32 *info) |
|
int __init | option_setup (char *str) |
|
| module_init (gdth_init) |
|
| module_exit (gdth_exit) |
|
| __setup ("gdth=", option_setup) |
|
#define BUS_L2P |
( |
|
a, |
|
|
|
b |
|
) |
| ((b)>(a)->virt_bus ? (b-1):(b)) |
#define PTR2USHORT |
( |
|
a | ) |
(u16)(unsigned long)(a) |
MODULE_AUTHOR |
( |
"Achim Leubner" |
| ) |
|
module_exit |
( |
gdth_exit |
| ) |
|
module_init |
( |
gdth_init |
| ) |
|
module_param |
( |
reserve_mode |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
reverse_scan |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
hdr_channel |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
max_ids |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
rescan |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
shared_access |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
probe_eisa_isa |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
force_dma32 |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
reserve_list |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |