This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / ide / pci / alim15x3.h
1 #ifndef ALI15X3_H
2 #define ALI15X3_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 #define DISPLAY_ALI_TIMINGS
9
10 static unsigned int init_chipset_ali15x3(struct pci_dev *, const char *);
11 static void init_hwif_common_ali15x3(ide_hwif_t *);
12 static void init_hwif_ali15x3(ide_hwif_t *);
13 static void init_dma_ali15x3(ide_hwif_t *, unsigned long);
14
15 static ide_pci_device_t ali15x3_chipsets[] __devinitdata = {
16         {       /* 0 */
17                 .vendor         = PCI_VENDOR_ID_AL,
18                 .device         = PCI_DEVICE_ID_AL_M5229,
19                 .name           = "ALI15X3",
20                 .init_chipset   = init_chipset_ali15x3,
21                 .init_hwif      = init_hwif_ali15x3,
22                 .init_dma       = init_dma_ali15x3,
23                 .channels       = 2,
24                 .autodma        = AUTODMA,
25                 .bootable       = ON_BOARD,
26         }
27 };
28
29 #endif /* ALI15X3 */