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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 91FE7C61DA4 for ; Tue, 14 Feb 2023 14:29:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232473AbjBNO3i (ORCPT ); Tue, 14 Feb 2023 09:29:38 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54568 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233062AbjBNO33 (ORCPT ); Tue, 14 Feb 2023 09:29:29 -0500 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 62EA92B299; Tue, 14 Feb 2023 06:29:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=QA+QFHpo/yr+1QPhF3GkUty/YChC2ZC03b0aBnBQUoI=; b=FrTvxM3brmQJh4xLkeaBwticuW DDjoHzS0HwU4A78K23AFPO5b7ArBn8MPmfXMwJ1FL8ZpeGz3I1RTVkwAAhc1SdFtxT/owPq4+eOvm wenpdn4DyQoy7xXtuLgWA8q2APKqK/l8FAXHNc2foi/UnFt4Eo0xeRgUfsvknI3DlJ4I=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1pRvgz-004xCy-Ly; Tue, 14 Feb 2023 14:49:57 +0100 Date: Tue, 14 Feb 2023 14:49:57 +0100 From: Andrew Lunn To: Wei Fang Cc: Alexander Lobakin , Shenwei Wang , Clark Wang , "davem@davemloft.net" , "edumazet@google.com" , "kuba@kernel.org" , "pabeni@redhat.com" , "simon.horman@corigine.com" , "netdev@vger.kernel.org" , dl-linux-imx , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH V2 net-next] net: fec: add CBS offload support Message-ID: References: <20230213092912.2314029-1-wei.fang@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > > --- a/drivers/net/ethernet/freescale/fec_main.c > > > +++ b/drivers/net/ethernet/freescale/fec_main.c > > > @@ -66,6 +66,7 @@ > > > #include > > > #include > > > #include > > > +#include > > > > Some alphabetic order? At least for new files :D > > > I just want to keep the reverse Christmas tree style, although the whole #include > order is already out of the style. Reverse Christmass tree does not apply to includes, just local variables. And the FEC driver has never been very good at it. Andrew