diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2017-01-04 08:13:34 +0100 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2017-02-09 00:39:06 -0800 |
commit | 664a722b4f1bab63fee0193459036d1a95e19e99 (patch) | |
tree | 848b775d5479067b740b9ab9cc2d7e7631c62e3b /drivers/target | |
parent | bdec5188745c4f03ecbc5b88bc2c3f76acb435ae (diff) | |
download | linux-stable-664a722b4f1bab63fee0193459036d1a95e19e99.tar.gz linux-stable-664a722b4f1bab63fee0193459036d1a95e19e99.tar.bz2 linux-stable-664a722b4f1bab63fee0193459036d1a95e19e99.zip |
target/tcm_fc: Remove a set-but-not-used variable
This was detected by building with W=1.
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: Johannes Thumshirn <jth@kernel.org>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/tcm_fc/tfc_cmd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/target/tcm_fc/tfc_cmd.c b/drivers/target/tcm_fc/tfc_cmd.c index 9af7842b8178..ec372860106f 100644 --- a/drivers/target/tcm_fc/tfc_cmd.c +++ b/drivers/target/tcm_fc/tfc_cmd.c @@ -83,14 +83,12 @@ void ft_dump_cmd(struct ft_cmd *cmd, const char *caller) static void ft_free_cmd(struct ft_cmd *cmd) { struct fc_frame *fp; - struct fc_lport *lport; struct ft_sess *sess; if (!cmd) return; sess = cmd->sess; fp = cmd->req_frame; - lport = fr_dev(fp); if (fr_seq(fp)) fc_seq_release(fr_seq(fp)); fc_frame_free(fp); |