diff options
author | Maciej Patelczyk <maciej.patelczyk@intel.com> | 2011-04-29 00:06:06 +0200 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 13:00:38 +0200 |
commit | d3757c3aeb75259e0b86a872e98841a2ea4cb5e8 (patch) | |
tree | e2484fe1e6601fd343b950280c388586a4217a4c /drivers/scsi/isci/host.c | |
parent | isci: Removed struct sci_base_object from state machine. (diff) | |
download | linux-d3757c3aeb75259e0b86a872e98841a2ea4cb5e8.tar.xz linux-d3757c3aeb75259e0b86a872e98841a2ea4cb5e8.zip |
isci: Removed sci_base_object from scic_sds_controller.
The 'struct sci_base_object' was removed from the struct
scic_sds_controller and was replaced by a pointer to
struct isci_host.
Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/host.c')
-rw-r--r-- | drivers/scsi/isci/host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/isci/host.c b/drivers/scsi/isci/host.c index 676bcdbfc316..55bfa3dbfb8f 100644 --- a/drivers/scsi/isci/host.c +++ b/drivers/scsi/isci/host.c @@ -365,7 +365,7 @@ int isci_host_init(struct isci_host *isci_host) } isci_host->core_controller = controller; - sci_object_set_association(isci_host->core_controller, isci_host); + controller->ihost = isci_host; spin_lock_init(&isci_host->state_lock); spin_lock_init(&isci_host->scic_lock); spin_lock_init(&isci_host->queue_lock); |