#include <linux/types.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <asm/io.h>
Go to the source code of this file.
#define DECLARE_ICH_DEV |
( |
|
mwdma, |
|
|
|
udma |
|
) |
| |
Value:{ \
.init_chipset = init_chipset_ich, \
.init_hwif = init_hwif_piix, \
.enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, \
.port_ops = &ich_port_ops, \
.mwdma_mask = mwdma, \
.udma_mask = udma, \
}
Definition at line 334 of file piix.c.
#define DECLARE_PIIX_DEV |
( |
|
udma | ) |
|
Value:{ \
.init_hwif = init_hwif_piix, \
.enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, \
.port_ops = &piix_port_ops, \
.udma_mask = udma, \
}
Definition at line 322 of file piix.c.
MODULE_AUTHOR |
( |
"Andre |
Hedrick, |
|
|
Andrzej Krzysztofowicz" |
|
|
) |
| |
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
piix_pci_tbl |
|
|
) |
| |
module_exit |
( |
piix_ide_exit |
| ) |
|
module_init |
( |
piix_ide_init |
| ) |
|