diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2011-02-16 16:04:38 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-24 12:41:15 -0500 |
commit | c71b9b669e1243623f7ed4332877d3f2beafc6ab (patch) | |
tree | eb288d3cd92fe124ec5263dd6f3b0aa49dd238b9 /drivers/scsi/cxgbi/cxgb3i | |
parent | 289324b0c6007171d67bf1ab0827355ae3374773 (diff) |
[SCSI] cxgbi: convert to use iscsi_conn_get_addr_param
This has cxgbi use the iscsi_conn_get_addr_param helper
and the get ep callback.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/cxgbi/cxgb3i')
-rw-r--r-- | drivers/scsi/cxgbi/cxgb3i/cxgb3i.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c b/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c index 69a6769c633e..fc2cdb62f53b 100644 --- a/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c +++ b/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c | |||
@@ -137,7 +137,7 @@ static struct iscsi_transport cxgb3i_iscsi_transport = { | |||
137 | .destroy_conn = iscsi_tcp_conn_teardown, | 137 | .destroy_conn = iscsi_tcp_conn_teardown, |
138 | .start_conn = iscsi_conn_start, | 138 | .start_conn = iscsi_conn_start, |
139 | .stop_conn = iscsi_conn_stop, | 139 | .stop_conn = iscsi_conn_stop, |
140 | .get_conn_param = cxgbi_get_conn_param, | 140 | .get_conn_param = iscsi_conn_get_param, |
141 | .set_param = cxgbi_set_conn_param, | 141 | .set_param = cxgbi_set_conn_param, |
142 | .get_stats = cxgbi_get_conn_stats, | 142 | .get_stats = cxgbi_get_conn_stats, |
143 | /* pdu xmit req from user space */ | 143 | /* pdu xmit req from user space */ |
@@ -152,6 +152,7 @@ static struct iscsi_transport cxgb3i_iscsi_transport = { | |||
152 | .xmit_pdu = cxgbi_conn_xmit_pdu, | 152 | .xmit_pdu = cxgbi_conn_xmit_pdu, |
153 | .parse_pdu_itt = cxgbi_parse_pdu_itt, | 153 | .parse_pdu_itt = cxgbi_parse_pdu_itt, |
154 | /* TCP connect/disconnect */ | 154 | /* TCP connect/disconnect */ |
155 | .get_ep_param = cxgbi_get_ep_param, | ||
155 | .ep_connect = cxgbi_ep_connect, | 156 | .ep_connect = cxgbi_ep_connect, |
156 | .ep_poll = cxgbi_ep_poll, | 157 | .ep_poll = cxgbi_ep_poll, |
157 | .ep_disconnect = cxgbi_ep_disconnect, | 158 | .ep_disconnect = cxgbi_ep_disconnect, |