aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-13 15:39:43 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-13 15:39:43 -0400
commita36223b0dc14606b5c80aacbbe6288133693a841 (patch)
tree6ff55ad65a4c1a20763e5f694a5c4e810be7da73 /include/linux/ide.h
parentcf4049103be931fca133f66b3181490284a521c6 (diff)
ide: remove ide_host_alloc_all()
* Remove no longer used ide_host_alloc_all(). * Add MAX_HOST_PORTS define and use it instead of MAX_HWIFS as the maximum number of host ports possible. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 37a4344f3842..86fa030e8022 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -832,8 +832,10 @@ typedef struct hwif_s {
832#endif 832#endif
833} ____cacheline_internodealigned_in_smp ide_hwif_t; 833} ____cacheline_internodealigned_in_smp ide_hwif_t;
834 834
835#define MAX_HOST_PORTS 4
836
835struct ide_host { 837struct ide_host {
836 ide_hwif_t *ports[MAX_HWIFS]; 838 ide_hwif_t *ports[MAX_HOST_PORTS];
837 unsigned int n_ports; 839 unsigned int n_ports;
838 struct device *dev[2]; 840 struct device *dev[2];
839 unsigned int (*init_chipset)(struct pci_dev *); 841 unsigned int (*init_chipset)(struct pci_dev *);
@@ -1479,7 +1481,6 @@ void ide_undecoded_slave(ide_drive_t *);
1479 1481
1480void ide_port_apply_params(ide_hwif_t *); 1482void ide_port_apply_params(ide_hwif_t *);
1481 1483
1482struct ide_host *ide_host_alloc_all(const struct ide_port_info *, hw_regs_t **);
1483struct ide_host *ide_host_alloc(const struct ide_port_info *, hw_regs_t **); 1484struct ide_host *ide_host_alloc(const struct ide_port_info *, hw_regs_t **);
1484void ide_host_free(struct ide_host *); 1485void ide_host_free(struct ide_host *);
1485int ide_host_register(struct ide_host *, const struct ide_port_info *, 1486int ide_host_register(struct ide_host *, const struct ide_port_info *,