aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libfc
diff options
context:
space:
mode:
authorRobert Love <robert.w.love@intel.com>2009-11-03 14:45:52 -0500
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:00:54 -0500
commit255f6386b816b2bc0c251af0ee4985ad5a8461b7 (patch)
tree7c2d4605502633715f23d49948ef0f68f9561592 /drivers/scsi/libfc
parent1a7b75ae719754c77ccd4d18b0d258ae5db38a25 (diff)
[SCSI] libfc: Remove fc_fcp_complete
This function is never used, let's remove it. Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc')
-rw-r--r--drivers/scsi/libfc/fc_fcp.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/scsi/libfc/fc_fcp.c b/drivers/scsi/libfc/fc_fcp.c
index 479af9352a42..3ab08f8dfb25 100644
--- a/drivers/scsi/libfc/fc_fcp.c
+++ b/drivers/scsi/libfc/fc_fcp.c
@@ -1875,23 +1875,6 @@ static void fc_io_compl(struct fc_fcp_pkt *fsp)
1875} 1875}
1876 1876
1877/** 1877/**
1878 * fc_fcp_complete() - complete processing of a fcp packet
1879 * @fsp: fcp packet
1880 *
1881 * This function may sleep if a fsp timer is pending.
1882 * The host lock must not be held by caller.
1883 */
1884void fc_fcp_complete(struct fc_fcp_pkt *fsp)
1885{
1886 if (fc_fcp_lock_pkt(fsp))
1887 return;
1888
1889 fc_fcp_complete_locked(fsp);
1890 fc_fcp_unlock_pkt(fsp);
1891}
1892EXPORT_SYMBOL(fc_fcp_complete);
1893
1894/**
1895 * fc_eh_abort() - Abort a command 1878 * fc_eh_abort() - Abort a command
1896 * @sc_cmd: scsi command to abort 1879 * @sc_cmd: scsi command to abort
1897 * 1880 *