#include <linux/module.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/cdrom.h>
#include <linux/spinlock.h>
#include <linux/blkdev.h>
#include <linux/mutex.h>
#include <asm/uaccess.h>
#include "paride.h"
#include "pseudo.h"
Go to the source code of this file.
|
| module_param (verbose, int, 0644) |
|
| module_param (major, int, 0) |
|
| module_param (name, charp, 0) |
|
| module_param (nice, int, 0) |
|
| module_param_array (drive0, int, NULL, 0) |
|
| module_param_array (drive1, int, NULL, 0) |
|
| module_param_array (drive2, int, NULL, 0) |
|
| module_param_array (drive3, int, NULL, 0) |
|
| MODULE_LICENSE ("GPL") |
|
#define PCD_DELAY 50 /* spin delay in uS */ |
#define PCD_RESET_TMO 100 /* in tenths of a second */ |
#define PCD_VERSION "1.07" |
- Enumerator:
D_PRT |
|
D_PRO |
|
D_UNI |
|
D_MOD |
|
D_SLV |
|
D_DLY |
|
Definition at line 128 of file pcd.c.
module_param |
( |
name |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
nice |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
drive0 |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
drive1 |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
drive2 |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
drive3 |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |