ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / ide / pci / sc1200.h
1 #ifndef SC1200_H
2 #define SC1200_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 #define DISPLAY_SC1200_TIMINGS
9
10 static unsigned int init_chipset_sc1200(struct pci_dev *, const char *);
11 static void init_hwif_sc1200(ide_hwif_t *);
12
13 static ide_pci_device_t sc1200_chipsets[] __devinitdata = {
14         {       /* 0 */
15                 .vendor         = PCI_VENDOR_ID_NS,
16                 .device         = PCI_DEVICE_ID_NS_SCx200_IDE,
17                 .name           = "SC1200",
18                 .init_chipset   = init_chipset_sc1200,
19                 .init_iops      = NULL,
20                 .init_hwif      = init_hwif_sc1200,
21                 .channels       = 2,
22                 .autodma        = AUTODMA,
23                 .enablebits     = {{0x00,0x00,0x00}, {0x00,0x00,0x00}},
24                 .bootable       = ON_BOARD,
25                 .extra          = 0,
26         },{
27                 .vendor         = 0,
28                 .device         = 0,
29                 .channels       = 0,
30                 .bootable       = EOL,
31         }
32 };
33
34 #endif /* SC1200_H */