From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3CC90C33CA9 for ; Mon, 13 Jan 2020 15:13:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1316B2187F for ; Mon, 13 Jan 2020 15:13:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578928439; bh=k37G7crg/rnM1OPMgaFjdTDn+Y4irTU6HvEVxVieUjM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=1oWl1yTjwV81VUHkwEnHhZQcAJruATID7wkMLiFL4FWDEZjHPJl8rR9x3TJR9F8YN GE9wJ6UnN435xXm1EUceZTGcmHQ1yqwmpm/yFj+sTMYz2ze3GrxnHvWjEJBWMJ1zfL twrMRKzmMaibz0A6cEbAal4dCTcqWFWrrkVJMQxU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729268AbgAMPNz (ORCPT ); Mon, 13 Jan 2020 10:13:55 -0500 Received: from mail.kernel.org ([198.145.29.99]:39932 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726567AbgAMPNy (ORCPT ); Mon, 13 Jan 2020 10:13:54 -0500 Received: from cakuba (unknown [172.58.35.234]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6E949207E0; Mon, 13 Jan 2020 15:13:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578928434; bh=k37G7crg/rnM1OPMgaFjdTDn+Y4irTU6HvEVxVieUjM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=2hwwdBpUxEHlF/MjAnrClMUvpSXE0hViNfyJbeItXwrJg/UYJfNs7k4g0NTGgL4qg oB47bgNla0FdArsPtX9RFkZtKktMmYBl6EAK5tKv6DMGQWLM3whpFWy2ndFngr58H1 e/SiSW/FESxRge2qm/qM6l5ZH530SABcPO51G5uQ= Date: Mon, 13 Jan 2020 07:12:51 -0800 From: Jakub Kicinski To: Jose Abreu Cc: netdev@vger.kernel.org, Joao Pinto , Giuseppe Cavallaro , Alexandre Torgue , "David S. Miller" , Maxime Coquelin , linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net-next v2 2/8] net: stmmac: tc: Add support for ETF Scheduler using TBS Message-ID: <20200113071251.1d9d51f6@cakuba> In-Reply-To: <4a4290706a9166d67d2d455dfa9d5f259699a036.1578920366.git.Jose.Abreu@synopsys.com> References: <4a4290706a9166d67d2d455dfa9d5f259699a036.1578920366.git.Jose.Abreu@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, 13 Jan 2020 14:02:37 +0100, Jose Abreu wrote: > +static int tc_setup_etf(struct stmmac_priv *priv, > + struct tc_etf_qopt_offload *qopt) > +{ > + There's a couple places I spotted where continuation lines are not aligned to the opening parenthesis, and here we have a spurious blank line. Please run this through checkpatch --strict, I see quite a few legit errors there.