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 8A08B8833 for ; Fri, 11 Aug 2023 22:08:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9B1EFC433C8; Fri, 11 Aug 2023 22:08:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691791707; bh=MTgwBMCn+JkVAJDcoGKRaEkIN/v48klljD9eqmvjNIk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=qtI4sbTE9Bq+KPLgjRdeJgbMBxdXa1RjPgWR93egrfvsE0rLj4Cq5LdqdAACfcQol NWk3p3AVJl54yEjtnq6hwLfE/Ulxo3KUzLJxdL+QbFbfeJBp3YY8k5hgNxk0Na05pl MliF8HAc3vPIaU/JBIuq2xzlLLkmHAkjb6o63+8KQcDOf2GvcMP0PY3E+p8uXYwN6e 6pT/vTnYZnrzjP6kdAhc+aXkJgPTkUzv1hfvzM1+Jr1fVcCcm6y7sYQ4/wcgOCoXUj ZLMTcy75udUd18JxR+/yBfJYXweCj2TaUI9qInsqSqJJ+bIOT6/ST0r9JADXJi427p rhteQbK90LncQ== Date: Fri, 11 Aug 2023 15:08:26 -0700 From: Jakub Kicinski To: Thinh Tran Cc: aelior@marvell.com, davem@davemloft.net, edumazet@google.com, manishc@marvell.com, netdev@vger.kernel.org, pabeni@redhat.com, skalluru@marvell.com, VENKATA.SAI.DUGGI@ibm.com Subject: Re: [Patch v5 2/4] bnx2x: factor out common code to bnx2x_stop_nic() Message-ID: <20230811150826.454b63dd@kernel.org> In-Reply-To: <20230811201512.461657-3-thinhtr@linux.vnet.ibm.com> References: <20230728211133.2240873-1-thinhtr@linux.vnet.ibm.com> <20230811201512.461657-1-thinhtr@linux.vnet.ibm.com> <20230811201512.461657-3-thinhtr@linux.vnet.ibm.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-Transfer-Encoding: 7bit On Fri, 11 Aug 2023 15:15:10 -0500 Thinh Tran wrote: > } > +void bnx2x_stop_nic(struct bnx2x *bp, int disable_hw) > +{ nit: empty line between closing bracket of previous function and the beginning of the new one, please (checkpatch --strict should hopefully point that out, although I haven't confirmed).