ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / ide / pci / sis5513.h
1 #ifndef SIS5513_H
2 #define SIS5513_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 #define DISPLAY_SIS_TIMINGS
9
10 static unsigned int init_chipset_sis5513(struct pci_dev *, const char *);
11 static void init_hwif_sis5513(ide_hwif_t *);
12
13 static ide_pci_device_t sis5513_chipsets[] __devinitdata = {
14         {       /* 0 */
15                 .vendor         = PCI_VENDOR_ID_SI,
16                 .device         = PCI_DEVICE_ID_SI_5513,
17                 .name           = "SIS5513",
18                 .init_chipset   = init_chipset_sis5513,
19                 .init_iops      = NULL,
20                 .init_hwif      = init_hwif_sis5513,
21                 .channels       = 2,
22                 .autodma        = NOAUTODMA,
23                 .enablebits     = {{0x4a,0x02,0x02}, {0x4a,0x04,0x04}},
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 /* SIS5513_H */