projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
473e285
)
[SCSI] libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort
author
Robert Love
<
[email protected]
>
Wed, 21 Oct 2009 23:27:06 +0000
(16:27 -0700)
committer
James Bottomley
<
[email protected]
>
Fri, 4 Dec 2009 18:00:26 +0000
(12:00 -0600)
This argument isn't used, let's not pass it into the routine.
Signed-off-by: Robert Love <
[email protected]
>
Signed-off-by: James Bottomley <
[email protected]
>
drivers/scsi/libfc/fc_fcp.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/libfc/fc_fcp.c
b/drivers/scsi/libfc/fc_fcp.c
index e613eb80d3a3e966aad117d5ffeb955485d700d1..ade962d74fb984497effbacac06513c1175595df 100644
(file)
--- a/
drivers/scsi/libfc/fc_fcp.c
+++ b/
drivers/scsi/libfc/fc_fcp.c
@@
-1097,7
+1097,7
@@
unlock:
* Scsi abort handler- calls to send an abort
* and then wait for abort completion
*/
-static int fc_fcp_pkt_abort(struct fc_
lport *lp, struct fc_
fcp_pkt *fsp)
+static int fc_fcp_pkt_abort(struct fc_fcp_pkt *fsp)
{
int rc = FAILED;
@@
-1945,7
+1945,7
@@
int fc_eh_abort(struct scsi_cmnd *sc_cmd)
goto release_pkt;
}
- rc = fc_fcp_pkt_abort(
lp,
fsp);
+ rc = fc_fcp_pkt_abort(fsp);
fc_fcp_unlock_pkt(fsp);
release_pkt: