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 7135D12B8F for ; Thu, 17 Aug 2023 11:30:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5A507C433C8; Thu, 17 Aug 2023 11:30:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692271814; bh=3k5gnRaLKoW6X/EEBv0L6dRfrVQFqZmbkteYQhexJfs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=UE/cEvpae8R2f4Y4/t6QYvZ2LIogr3akbgGep+6TI4C4SCN7joOvsibZbpuGbDjyx NoWk1HcKz3sg1haTNceJdJ4JCwAr3uBSFoGr75kK/CB5V5Wr2ljzOFJkkn6NSkWVKJ j4o2Ellg/dpRW1DgUB38wmLAlVe2hDVpEybRySr4MtXWqq6xkYAX8jZULULbnRfsvA lTbH+FQvFix9PiylZsq8g8P4SREPnPoy8gIQW8i9lb08447ZvpZAXnXRAYGle0wse8 gAhs1dpTGEWEC17xFZwAmtwtsqc7nGcqMk/a59usfnFvAig6xqovRsK1usH25Wppm+ wLGQiVpYuw2aw== Date: Thu, 17 Aug 2023 14:30:10 +0300 From: Leon Romanovsky To: Tony Nguyen Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com, edumazet@google.com, netdev@vger.kernel.org, Jan Sokolowski , Jacob Keller , Przemek Kitszel Subject: Re: [PATCH net-next 02/14] ice: refactor ice_ddp to make functions static Message-ID: <20230817113010.GK22185@unreal> References: <20230816204736.1325132-1-anthony.l.nguyen@intel.com> <20230816204736.1325132-3-anthony.l.nguyen@intel.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: <20230816204736.1325132-3-anthony.l.nguyen@intel.com> On Wed, Aug 16, 2023 at 01:47:24PM -0700, Tony Nguyen wrote: > From: Jan Sokolowski > > As following methods are not used outside of ice_ddp, > they can be made static: > ice_verify_pgk > ice_pkg_val_buf > ice_aq_download_pkg > ice_aq_update_pkg > ice_find_seg_in_pkg > > Signed-off-by: Jan Sokolowski > Reviewed-by: Jacob Keller > Reviewed-by: Przemek Kitszel > Signed-off-by: Tony Nguyen > --- > drivers/net/ethernet/intel/ice/ice_ddp.c | 120 ++++++++++++----------- > drivers/net/ethernet/intel/ice/ice_ddp.h | 10 -- > 2 files changed, 61 insertions(+), 69 deletions(-) > Thanks, Reviewed-by: Leon Romanovsky