#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/ioport.h>
#include <scsi/scsi.h>
#include <linux/major.h>
#include <linux/blkdev.h>
#include <scsi/scsi_ioctl.h>
#include "scsi.h"
#include <scsi/scsi_host.h>
#include "aha152x.h"
#include <pcmcia/cistpl.h>
#include <pcmcia/ds.h>
Go to the source code of this file.
|
| module_param (host_id, int, 0) |
|
| module_param (reconnect, int, 0) |
|
| module_param (parity, int, 0) |
|
| module_param (synchronous, int, 0) |
|
| module_param (reset_delay, int, 0) |
|
| module_param (ext_trans, int, 0) |
|
| MODULE_LICENSE ("Dual MPL/GPL") |
|
| MODULE_DEVICE_TABLE (pcmcia, aha152x_ids) |
|
| module_init (init_aha152x_cs) |
|
| module_exit (exit_aha152x_cs) |
|
MODULE_DEVICE_TABLE |
( |
pcmcia |
, |
|
|
aha152x_ids |
|
|
) |
| |
module_exit |
( |
exit_aha152x_cs |
| ) |
|
module_init |
( |
init_aha152x_cs |
| ) |
|
MODULE_LICENSE |
( |
"Dual MPL/GPL" |
| ) |
|
module_param |
( |
reconnect |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
synchronous |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
reset_delay |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
ext_trans |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |