This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / ide / pci / rz1000.h
1 #ifndef RZ100X_H
2 #define RZ100X_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 static void init_hwif_rz1000(ide_hwif_t *);
9
10 static ide_pci_device_t rz1000_chipsets[] __devinitdata = {
11 {
12                 .vendor         = PCI_VENDOR_ID_PCTECH,
13                 .device         = PCI_DEVICE_ID_PCTECH_RZ1000,
14                 .name           = "RZ1000",
15                 .init_hwif      = init_hwif_rz1000,
16                 .channels       = 2,
17                 .autodma        = NODMA,
18                 .bootable       = ON_BOARD,
19         },{
20                 .vendor         = PCI_VENDOR_ID_PCTECH,
21                 .device         = PCI_DEVICE_ID_PCTECH_RZ1001,
22                 .name           = "RZ1001",
23                 .init_hwif      = init_hwif_rz1000,
24                 .channels       = 2,
25                 .autodma        = NODMA,
26                 .bootable       = ON_BOARD,
27         }
28 };
29
30 #endif /* RZ100X_H */