#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/ioport.h>
#include <linux/blkdev.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <asm/io.h>
Go to the source code of this file.
| #define DRV_NAME "umc8672" |
| #define REALLY_SLOW_IO /* some systems can safely undef this */ |
| #define UMC_DRIVE0 1 /* DOS measured drive speeds */ |
| #define UMC_DRIVE1 1 /* 0 to 11 allowed */ |
| #define UMC_DRIVE2 1 /* 11 = Fastest Speed */ |
| #define UMC_DRIVE3 1 /* In case of crash reduce speed */ |
| MODULE_AUTHOR |
( |
"Wolfram Podien" |
| ) |
|
| module_init |
( |
umc8672_init |
| ) |
|
| module_param_named |
( |
probe |
, |
|
|
probe_umc8672 |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
| MODULE_PARM_DESC |
( |
probe |
, |
|
|
"probe for UMC8672 chipset" |
|
|
) |
| |