This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / ide / pci / sl82c105.h
1 #ifndef W82C105_H
2 #define W82C105_H
3
4 #include <linux/config.h>
5 #include <linux/pci.h>
6 #include <linux/ide.h>
7
8 static unsigned int init_chipset_sl82c105(struct pci_dev *, const char *);
9 static void init_hwif_sl82c105(ide_hwif_t *);
10 static void init_dma_sl82c105(ide_hwif_t *, unsigned long);
11
12 static ide_pci_device_t sl82c105_chipsets[] __devinitdata = {
13         {       /* 0 */
14                 .vendor         = PCI_VENDOR_ID_WINBOND,
15                 .device         = PCI_DEVICE_ID_WINBOND_82C105,
16                 .name           = "W82C105",
17                 .init_chipset   = init_chipset_sl82c105,
18                 .init_hwif      = init_hwif_sl82c105,
19                 .init_dma       = init_dma_sl82c105,
20                 .channels       = 2,
21                 .autodma        = NOAUTODMA,
22                 .enablebits     = {{0x40,0x01,0x01}, {0x40,0x10,0x10}},
23                 .bootable       = ON_BOARD,
24         }
25 };
26
27 #endif /* W82C105_H */