patch-2_6_7-vs1_9_1_12
[linux-2.6.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_setup_pdcadma(struct pci_dev *, ide_pci_device_t *);
9 extern unsigned int init_chipset_pdcadma(struct pci_dev *, const char *);
10 extern void init_hwif_pdcadma(ide_hwif_t *);
11 extern void init_dma_pdcadma(ide_hwif_t *, unsigned long);
12
13 static ide_pci_device_t pdcadma_chipsets[] __devinitdata = {
14         {
15                 .vendor         = PCI_VENDOR_ID_PDC,
16                 .device         = PCI_DEVICE_ID_PDC_1841,
17                 .name           = "ADMA100",
18                 .init_setup     = init_setup_pdcadma,
19                 .init_chipset   = init_chipset_pdcadma,
20                 .init_hwif      = init_hwif_pdcadma,
21                 .init_dma       = init_dma_pdcadma,
22                 .channels       = 2,
23                 .autodma        = NODMA,
24                 .bootable       = OFF_BOARD,
25         }
26 }
27
28 #endif /* ADMA_100_H */