diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-08-05 03:59:17 +0900 |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-08-05 03:59:17 +0900 |
commit | 6543bc0777fadf129d8ee7ac82e0090fb0480403 (patch) | |
tree | 6fc9ea06f1d70e3c6553c8ed7bc609914b13668a /drivers/scsi | |
parent | f31e945c50e47b7163c6018928aa93b66e8f22f0 (diff) | |
download | linux-3.10-6543bc0777fadf129d8ee7ac82e0090fb0480403.tar.gz linux-3.10-6543bc0777fadf129d8ee7ac82e0090fb0480403.tar.bz2 linux-3.10-6543bc0777fadf129d8ee7ac82e0090fb0480403.zip |
[PATCH] [libata] manually inline ata_host_remove()
(tj: this is for the following ata_device_add() fix)
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/libata-core.c | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index bca92dd3a45..509b0488998 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c @@ -5185,28 +5185,6 @@ void ata_host_stop (struct ata_host_set *host_set) iounmap(host_set->mmio_base); } - -/** - * ata_host_remove - Unregister SCSI host structure with upper layers - * @ap: Port to unregister - * @do_unregister: 1 if we fully unregister, 0 to just stop the port - * - * LOCKING: - * Inherited from caller. - */ - -static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister) -{ - struct Scsi_Host *sh = ap->host; - - DPRINTK("ENTER\n"); - - if (do_unregister) - scsi_remove_host(sh); - - ap->ops->port_stop(ap); -} - /** * ata_dev_init - Initialize an ata_device structure * @dev: Device structure to initialize @@ -5532,8 +5510,11 @@ int ata_device_add(const struct ata_probe_ent *ent) err_out: for (i = 0; i < count; i++) { - ata_host_remove(host_set->ports[i], 1); - scsi_host_put(host_set->ports[i]->host); + struct ata_port *ap = host_set->ports[i]; + + scsi_remove_host(ap->host); + ap->ops->port_stop(ap); + scsi_host_put(ap->host); } err_free_ret: kfree(host_set); @@ -5663,7 +5644,7 @@ int ata_scsi_release(struct Scsi_Host *host) DPRINTK("ENTER\n"); ap->ops->port_disable(ap); - ata_host_remove(ap, 0); + ap->ops->port_stop(ap); DPRINTK("EXIT\n"); return 1; |