diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-02-05 19:28:29 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-09 11:23:17 -0500 |
commit | 4df4db5c6c6daeb10a8693d09ce872bce8cd84e6 (patch) | |
tree | 7ec7632d88253f41c4b4a2faf0f404f661ed6f50 /drivers/scsi/mca_53c9x.c | |
parent | 335dc50cec2891026bd51e46769fc12365b6e475 (diff) |
[TC] dec_esp: Driver model for the PMAZ-A
This is a set of changes that converts the PMAZ-A support to the driver model.
The use of the driver model required switching to the hotplug SCSI
initialization model, which in turn required a change to the core NCR53C9x
driver. I decided not to break all the frontend drivers and introduced an
additional parameter for esp_allocate() to select between the old and the new
model. I hope this is OK, but I would be fine with converting NCR53C9x to the
new model unconditionally as long as I do not have to fix all the other
frontends (OK, perhaps I could do some of them ;-) ).
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers/scsi/mca_53c9x.c')
-rw-r--r-- | drivers/scsi/mca_53c9x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mca_53c9x.c b/drivers/scsi/mca_53c9x.c index 998a8bbc1a4b..d693d0f21395 100644 --- a/drivers/scsi/mca_53c9x.c +++ b/drivers/scsi/mca_53c9x.c | |||
@@ -122,7 +122,7 @@ static int mca_esp_detect(struct scsi_host_template *tpnt) | |||
122 | if ((slot = mca_find_adapter(*id_to_check, 0)) != | 122 | if ((slot = mca_find_adapter(*id_to_check, 0)) != |
123 | MCA_NOTFOUND) | 123 | MCA_NOTFOUND) |
124 | { | 124 | { |
125 | esp = esp_allocate(tpnt, (void *) NULL); | 125 | esp = esp_allocate(tpnt, NULL, 0); |
126 | 126 | ||
127 | pos[0] = mca_read_stored_pos(slot, 2); | 127 | pos[0] = mca_read_stored_pos(slot, 2); |
128 | pos[1] = mca_read_stored_pos(slot, 3); | 128 | pos[1] = mca_read_stored_pos(slot, 3); |