update atp870u driver to 0.78 from D-Link source
[linux-2.4.git] / drivers / ide / pci / adma100.h
1 #ifndef ADMA_100_H
2 #define ADMA_100_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 extern void init_hwif_adma100(ide_hwif_t *);
9
10 static ide_pci_device_t adma100_chipsets[] __devinitdata = {
11         {
12                 .vendor         = PCI_VENDOR_ID_PDC,
13                 .device         = PCI_DEVICE_ID_PDC_ADMA100,
14                 .name           = "ADMA100",
15                 .init_setup     = NULL,
16                 .init_chipset   = NULL,
17                 .init_iops      = NULL,
18                 .init_hwif      = init_hwif_adma100,
19                 .init_dma       = NULL,
20                 .channels       = 2,
21                 .autodma        = NODMA,
22                 .enablebits     = {{0x00,0x00,0x00}, {0x00,0x00,0x00}},
23                 .bootable       = OFF_BOARD,
24                 .extra          = 0
25         },{
26                 .vendor         = 0,
27                 .device         = 0,
28                 .channels       = 0,
29                 .bootable       = EOL,
30         }
31 };
32
33 #endif /* ADMA_100_H */