From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 144BF4A11 for ; Wed, 5 Jul 2023 10:51:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0C02C433C8; Wed, 5 Jul 2023 10:51:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1688554310; bh=j1PRxiA3cbBtv82P0AXnECISX+jSkREEWP8RwdooE+U=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=c6yxnjU8VDYuxH6xc3n4fjR+UuqhZdEXp9TM6actgmcc2VurAGPpUA1h1co1VD3iY +CEz0YGVzCfbEIVD07kHsff1tmdERyJPiqS5Wsz4/HUlyKwMhW8EYdpt8gRMJpOlJZ +FAwdIEABGw/6pvPKcd47ySUgiycOwL5yLCSHeRLKdPdrXJ2+W7BnnmR7drEgv2/fu NpBTgpkkB5hsFawg5uadE54c3qJBchG5DirPSEPh6dr8Qx5LUgy3Lf9l8smqWUPRqn jf9t3A8B3UKhCy26XOtM6RrN/U3qgf15Rsv7iSYr6yrWao59YQxooNcJ75BwQU3Rg0 9qHtfFuQx1vjA== Date: Wed, 5 Jul 2023 13:51:46 +0300 From: Leon Romanovsky To: Minjie Du Cc: Markus.Elfring@web.de, Ariel Elior , Manish Chopra , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , "open list:QLOGIC QL4xxx ETHERNET DRIVER" , open list , opensource.kernel@vivo.com Subject: Re: [PATCH v2] qed: Remove a duplicate assignment in qed_rdma_create_srq() Message-ID: <20230705105146.GN6455@unreal> References: <20230705103547.15072-1-duminjie@vivo.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230705103547.15072-1-duminjie@vivo.com> On Wed, Jul 05, 2023 at 06:35:46PM +0800, Minjie Du wrote: > Delete a duplicate statement from this function implementation. > > Signed-off-by: Minjie Du > --- > drivers/net/ethernet/qlogic/qed/qed_rdma.c | 1 - > 1 file changed, 1 deletion(-) This patch should be resubmitted after merge window ends. Please specify net-next target in patch subject and add changelog that describes the differences between versions. Thanks > > diff --git a/drivers/net/ethernet/qlogic/qed/qed_rdma.c b/drivers/net/ethernet/qlogic/qed/qed_rdma.c > index 5a5dbbb8d..41efced49 100644 > --- a/drivers/net/ethernet/qlogic/qed/qed_rdma.c > +++ b/drivers/net/ethernet/qlogic/qed/qed_rdma.c > @@ -1795,7 +1795,6 @@ qed_rdma_create_srq(void *rdma_cxt, > > opaque_fid = p_hwfn->hw_info.opaque_fid; > > - opaque_fid = p_hwfn->hw_info.opaque_fid; > init_data.opaque_fid = opaque_fid; > init_data.comp_mode = QED_SPQ_MODE_EBLOCK; > > -- > 2.39.0 > >