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 9D0FF12B9B for ; Thu, 17 Aug 2023 11:30:42 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80EE3C433C7; Thu, 17 Aug 2023 11:30:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692271842; bh=pKDzwMi3nRZZ5z+qWc5pfDjhlC6ppP8ra3pgmOCsWn8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=al4P+wiO+SvKFv32Gx4nlfNGgCKe53+Uf18Yn+NJVvGo/lHycNjUjcYcvyGSnC6Nx AaWIFZUF18kYgut5oyfqFi0jKWstEv5CoQtMqeN29UbmHpZdyKML7o70a1M5eJVIXK MnwOTm3H3mrtZwjt0oaUiDKWwmSxVUEYMHy+kASYq3k7Gcq91FFWnDBq60USzTwejz 5WFkNstKhDPevUSGI/TksQavQmjocSEAWWffzE9Lf4T8iTOjwI3VLCCa6Pmlw6Cmy5 kW7eEcO0gjd0EIFYmY6UfpN6t7wrXADS7fZl8AIOyWtuB83ktg6UO2qilDwr4YdbHi MgA3dQgzyJGGA== Date: Thu, 17 Aug 2023 14:30:37 +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 03/14] ice: refactor ice_lib to make functions static Message-ID: <20230817113037.GL22185@unreal> References: <20230816204736.1325132-1-anthony.l.nguyen@intel.com> <20230816204736.1325132-4-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-4-anthony.l.nguyen@intel.com> On Wed, Aug 16, 2023 at 01:47:25PM -0700, Tony Nguyen wrote: > From: Jan Sokolowski > > As following methods are not used outside of ice_lib, > they can be made static: > ice_vsi_is_vlan_pruning_ena > ice_vsi_cfg_frame_size > > Signed-off-by: Jan Sokolowski > Reviewed-by: Jacob Keller > Reviewed-by: Przemek Kitszel > Signed-off-by: Tony Nguyen > --- > drivers/net/ethernet/intel/ice/ice_lib.c | 70 ++++++++++++------------ > drivers/net/ethernet/intel/ice/ice_lib.h | 3 - > 2 files changed, 35 insertions(+), 38 deletions(-) > Thanks, Reviewed-by: Leon Romanovsky