From 62059912bf36670cafbaa0899ed286fcae910944 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Tue, 13 Aug 2013 18:36:08 +0000 Subject: [PATCH] fcst: Remove two comments from ft_prli_locked() git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4957 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- fcst/ft_sess.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fcst/ft_sess.c b/fcst/ft_sess.c index be4145245..2febdb22e 100644 --- a/fcst/ft_sess.c +++ b/fcst/ft_sess.c @@ -407,7 +407,7 @@ static int ft_prli_locked(struct fc_rport_priv *rdata, u32 spp_len, /* * If both target and initiator bits are off, the SPP is invalid. */ - fcp_parm = ntohl(rspp->spp_params); /* requested parameters */ + fcp_parm = ntohl(rspp->spp_params); if (!(fcp_parm & (FCP_SPPF_INIT_FCN | FCP_SPPF_TARG_FCN))) return FC_SPP_RESP_INVL; @@ -442,7 +442,7 @@ static int ft_prli_locked(struct fc_rport_priv *rdata, u32 spp_len, * Don't force RETRY on the initiator, though. */ fill: - fcp_parm = ntohl(spp->spp_params); /* response parameters */ + fcp_parm = ntohl(spp->spp_params); spp->spp_params = htonl(fcp_parm | FCP_SPPF_TARG_FCN); return FC_SPP_RESP_ACK; }