[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID:
<PAXPR04MB851036B2BE8D3BD2DD5CE5108872A@PAXPR04MB8510.eurprd04.prod.outlook.com>
Date: Wed, 18 Jun 2025 01:31:38 +0000
From: Wei Fang <wei.fang@....com>
To: Marc Kleine-Budde <mkl@...gutronix.de>, Alexander Lobakin
<aleksander.lobakin@...el.com>
CC: Shenwei Wang <shenwei.wang@....com>, Clark Wang <xiaoning.wang@....com>,
"David S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>, Richard
Cochran <richardcochran@...il.com>, Andrew Lunn <andrew+netdev@...n.ch>,
"imx@...ts.linux.dev" <imx@...ts.linux.dev>, "netdev@...r.kernel.org"
<netdev@...r.kernel.org>, "linux-kernel@...r.kernel.org"
<linux-kernel@...r.kernel.org>, "kernel@...gutronix.de"
<kernel@...gutronix.de>, Frank Li <frank.li@....com>, Andrew Lunn
<andrew@...n.ch>
Subject: RE: [PATCH net-next v3 03/10] net: fec: add missing header files
> On 17.06.2025 16:55:19, Alexander Lobakin wrote:
> > From: Marc Kleine-Budde <mkl@...gutronix.de>
> > Date: Tue, 17 Jun 2025 15:24:53 +0200
> >
> > > The fec.h isn't self contained. Add missing header files, so that it can be
> > > parsed by language servers without errors.
> > >
> > > Reviewed-by: Wei Fang <wei.fang@....com>
> > > Reviewed-by: Frank Li <Frank.Li@....com>
> > > Reviewed-by: Andrew Lunn <andrew@...n.ch>
> > > Signed-off-by: Marc Kleine-Budde <mkl@...gutronix.de>
> > > ---
> > > drivers/net/ethernet/freescale/fec.h | 2 ++
> > > 1 file changed, 2 insertions(+)
> > >
> > > diff --git a/drivers/net/ethernet/freescale/fec.h
> b/drivers/net/ethernet/freescale/fec.h
> > > index ce1e4fe4d492..4098d439a6ff 100644
> > > --- a/drivers/net/ethernet/freescale/fec.h
> > > +++ b/drivers/net/ethernet/freescale/fec.h
> > > @@ -15,7 +15,9 @@
> > >
> /*********************************************************************
> *******/
> > >
> > > #include <linux/clocksource.h>
> > > +#include <linux/ethtool.h>
> > > #include <linux/net_tstamp.h>
> > > +#include <linux/phy.h>
> > > #include <linux/pm_qos.h>
> > > #include <linux/bpf.h>
> > > #include <linux/ptp_clock_kernel.h>
> >
> > Sort alphabetically while at it? You'd only need to move bpf.h AFAICS.
>
> After sorting, the incremental diff will look like this:
>
> diff --git a/drivers/net/ethernet/freescale/fec.h
> b/drivers/net/ethernet/freescale/fec.h
> index 15334a5cce0f..1fe5e92afeb3 100644
> --- a/drivers/net/ethernet/freescale/fec.h
> +++ b/drivers/net/ethernet/freescale/fec.h
> @@ -14,16 +14,16 @@
> #define FEC_H
>
> /*********************************************************************
> *******/
>
> +#include <dt-bindings/firmware/imx/rsrc.h>
> +#include <linux/bpf.h>
> #include <linux/clocksource.h>
> #include <linux/ethtool.h>
> +#include <linux/firmware/imx/sci.h>
> #include <linux/net_tstamp.h>
> #include <linux/phy.h>
> #include <linux/pm_qos.h>
> -#include <linux/bpf.h>
> #include <linux/ptp_clock_kernel.h>
> #include <linux/timecounter.h>
> -#include <dt-bindings/firmware/imx/rsrc.h>
> -#include <linux/firmware/imx/sci.h>
> #include <net/xdp.h>
>
> #if defined(CONFIG_M523x) || defined(CONFIG_M527x) ||
> defined(CONFIG_M528x) || \
>
> Is that okay? If so, I'll squash it.
>
If you want alphabetical sorting, I think it's better to use another separate
patch, otherwise you will need to re-edit the title and commit message.
Powered by blists - more mailing lists