diff options
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index cda80b5779a4..b7d95f09cc2e 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -202,12 +202,6 @@ static inline void ide_std_init_ports(hw_regs_t *hw, | |||
202 | 202 | ||
203 | #define MAX_HWIFS 10 | 203 | #define MAX_HWIFS 10 |
204 | 204 | ||
205 | /* Currently only Atari needs it */ | ||
206 | #ifndef IDE_ARCH_LOCK | ||
207 | # define ide_release_lock() do {} while (0) | ||
208 | # define ide_get_lock(hdlr, data) do {} while (0) | ||
209 | #endif /* IDE_ARCH_LOCK */ | ||
210 | |||
211 | /* | 205 | /* |
212 | * Now for the data we need to maintain per-drive: ide_drive_t | 206 | * Now for the data we need to maintain per-drive: ide_drive_t |
213 | */ | 207 | */ |
@@ -845,8 +839,14 @@ struct ide_host { | |||
845 | ide_hwif_t *ports[MAX_HOST_PORTS + 1]; | 839 | ide_hwif_t *ports[MAX_HOST_PORTS + 1]; |
846 | unsigned int n_ports; | 840 | unsigned int n_ports; |
847 | struct device *dev[2]; | 841 | struct device *dev[2]; |
842 | |||
848 | int (*init_chipset)(struct pci_dev *); | 843 | int (*init_chipset)(struct pci_dev *); |
844 | |||
845 | void (*get_lock)(irq_handler_t, void *); | ||
846 | void (*release_lock)(void); | ||
847 | |||
849 | irq_handler_t irq_handler; | 848 | irq_handler_t irq_handler; |
849 | |||
850 | unsigned long host_flags; | 850 | unsigned long host_flags; |
851 | void *host_priv; | 851 | void *host_priv; |
852 | ide_hwif_t *cur_port; /* for hosts requiring serialization */ | 852 | ide_hwif_t *cur_port; /* for hosts requiring serialization */ |
@@ -1358,7 +1358,12 @@ enum { | |||
1358 | 1358 | ||
1359 | struct ide_port_info { | 1359 | struct ide_port_info { |
1360 | char *name; | 1360 | char *name; |
1361 | |||
1361 | int (*init_chipset)(struct pci_dev *); | 1362 | int (*init_chipset)(struct pci_dev *); |
1363 | |||
1364 | void (*get_lock)(irq_handler_t, void *); | ||
1365 | void (*release_lock)(void); | ||
1366 | |||
1362 | void (*init_iops)(ide_hwif_t *); | 1367 | void (*init_iops)(ide_hwif_t *); |
1363 | void (*init_hwif)(ide_hwif_t *); | 1368 | void (*init_hwif)(ide_hwif_t *); |
1364 | int (*init_dma)(ide_hwif_t *, | 1369 | int (*init_dma)(ide_hwif_t *, |