#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 "ht6560b" |
| #define HT6560B_VERSION "v0.08" |
| #define HT_CONFIG_DEFAULT 0x1c /* no prefetch */ |
| #define HT_CONFIG_PORT 0x3e6 |
| #define HT_PREFETCH_MODE 0x20 |
| #define HT_SECONDARY_IF 0x01 |
| #define HT_TIMING_DEFAULT 0xff |
| MODULE_AUTHOR |
( |
"See Local File" |
| ) |
|
| MODULE_DESCRIPTION |
( |
"HT-6560B EIDE-controller support" |
| ) |
|
| module_init |
( |
ht6560b_init |
| ) |
|
| module_param_named |
( |
probe |
, |
|
|
probe_ht6560b |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |