From: Breno Leitao <leitao@debian.org>
To: Andrew Lunn <andrew@lunn.ch>
Cc: kuba@kernel.org, davem@davemloft.net, abeni@redhat.com,
edumazet@google.com, Ioana Ciornei <ioana.ciornei@nxp.com>,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
Paolo Abeni <pabeni@redhat.com>,
Alexander Couzens <lynxis@fe80.eu>,
Daniel Golle <daniel@makrotopia.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Jose Abreu <Jose.Abreu@synopsys.com>,
dsahern@kernel.org, weiwan@google.com,
"open list:LYNX PCS MODULE" <netdev@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>,
"moderated list:ARM/Mediatek SoC support"
<linux-arm-kernel@lists.infradead.org>,
"moderated list:ARM/Mediatek SoC support"
<linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH net-next 03/22] net: fill in MODULE_DESCRIPTION()s for PCS Layer
Date: Mon, 22 Jan 2024 11:42:51 -0800 [thread overview]
Message-ID: <Za7FO7yBZ1a2KQ3B@gmail.com> (raw)
In-Reply-To: <52e39a1b-c551-4eea-9606-62be0cbad39f@lunn.ch>
On Mon, Jan 22, 2024 at 08:33:31PM +0100, Andrew Lunn wrote:
> On Mon, Jan 22, 2024 at 10:45:24AM -0800, Breno Leitao wrote:
> > W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> > Add descriptions to the LynxI PCS MediaTek's SoC.
>
> That patch now does more than that.
>
> > Signed-off-by: Breno Leitao <leitao@debian.org>
> > ---
> > drivers/net/pcs/pcs-lynx.c | 1 +
> > drivers/net/pcs/pcs-mtk-lynxi.c | 1 +
> > drivers/net/pcs/pcs-xpcs.c | 1 +
> > 3 files changed, 3 insertions(+)
> >
> > diff --git a/drivers/net/pcs/pcs-lynx.c b/drivers/net/pcs/pcs-lynx.c
> > index dc3962b2aa6b..d51d09beaab3 100644
> > --- a/drivers/net/pcs/pcs-lynx.c
> > +++ b/drivers/net/pcs/pcs-lynx.c
> > @@ -398,4 +398,5 @@ void lynx_pcs_destroy(struct phylink_pcs *pcs)
> > }
> > EXPORT_SYMBOL(lynx_pcs_destroy);
> >
> > +MODULE_DESCRIPTION("MediaTek SGMII library for Lynx PCS");
>
> pcs-lynx is for NXP hardware, not MediaTek.
Thanks. I will update!
WARNING: multiple messages have this Message-ID (diff)
From: Breno Leitao <leitao@debian.org>
To: Andrew Lunn <andrew@lunn.ch>
Cc: kuba@kernel.org, davem@davemloft.net, abeni@redhat.com,
edumazet@google.com, Ioana Ciornei <ioana.ciornei@nxp.com>,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
Paolo Abeni <pabeni@redhat.com>,
Alexander Couzens <lynxis@fe80.eu>,
Daniel Golle <daniel@makrotopia.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Jose Abreu <Jose.Abreu@synopsys.com>,
dsahern@kernel.org, weiwan@google.com,
"open list:LYNX PCS MODULE" <netdev@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>,
"moderated list:ARM/Mediatek SoC support"
<linux-arm-kernel@lists.infradead.org>,
"moderated list:ARM/Mediatek SoC support"
<linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH net-next 03/22] net: fill in MODULE_DESCRIPTION()s for PCS Layer
Date: Mon, 22 Jan 2024 11:42:51 -0800 [thread overview]
Message-ID: <Za7FO7yBZ1a2KQ3B@gmail.com> (raw)
In-Reply-To: <52e39a1b-c551-4eea-9606-62be0cbad39f@lunn.ch>
On Mon, Jan 22, 2024 at 08:33:31PM +0100, Andrew Lunn wrote:
> On Mon, Jan 22, 2024 at 10:45:24AM -0800, Breno Leitao wrote:
> > W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> > Add descriptions to the LynxI PCS MediaTek's SoC.
>
> That patch now does more than that.
>
> > Signed-off-by: Breno Leitao <leitao@debian.org>
> > ---
> > drivers/net/pcs/pcs-lynx.c | 1 +
> > drivers/net/pcs/pcs-mtk-lynxi.c | 1 +
> > drivers/net/pcs/pcs-xpcs.c | 1 +
> > 3 files changed, 3 insertions(+)
> >
> > diff --git a/drivers/net/pcs/pcs-lynx.c b/drivers/net/pcs/pcs-lynx.c
> > index dc3962b2aa6b..d51d09beaab3 100644
> > --- a/drivers/net/pcs/pcs-lynx.c
> > +++ b/drivers/net/pcs/pcs-lynx.c
> > @@ -398,4 +398,5 @@ void lynx_pcs_destroy(struct phylink_pcs *pcs)
> > }
> > EXPORT_SYMBOL(lynx_pcs_destroy);
> >
> > +MODULE_DESCRIPTION("MediaTek SGMII library for Lynx PCS");
>
> pcs-lynx is for NXP hardware, not MediaTek.
Thanks. I will update!
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-01-22 19:43 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20240122184543.2501493-1-leitao@debian.org>
2024-01-22 18:45 ` [PATCH net-next 01/22] net: fill in MODULE_DESCRIPTION()s for 8390 Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
2024-01-24 16:51 ` Miquel Raynal
2024-01-25 10:01 ` Breno Leitao
2024-01-25 14:55 ` Miquel Raynal
2024-01-25 15:36 ` Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 03/22] net: fill in MODULE_DESCRIPTION()s for PCS Layer Breno Leitao
2024-01-22 18:45 ` Breno Leitao
2024-01-22 19:31 ` Daniel Golle
2024-01-22 19:31 ` Daniel Golle
2024-01-22 19:42 ` Breno Leitao
2024-01-22 19:42 ` Breno Leitao
2024-01-22 19:33 ` Andrew Lunn
2024-01-22 19:33 ` Andrew Lunn
2024-01-22 19:42 ` Breno Leitao [this message]
2024-01-22 19:42 ` Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 04/22] net: fill in MODULE_DESCRIPTION()s for Broadcom bgmac Breno Leitao
2024-01-22 18:50 ` Florian Fainelli
2024-01-22 19:01 ` Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 05/22] net: fill in MODULE_DESCRIPTION()s for liquidio Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 06/22] net: fill in MODULE_DESCRIPTION()s for ep93xxx_eth Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 07/22] net: fill in MODULE_DESCRIPTION()s for nps_enet Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 08/22] net: fill in MODULE_DESCRIPTION()s for enetc Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 09/22] net: fill in MODULE_DESCRIPTION()s for fec Breno Leitao
2024-01-23 1:33 ` Wei Fang
2024-01-22 18:45 ` [PATCH net-next 10/22] net: fill in MODULE_DESCRIPTION()s for fsl_pq_mdio Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 11/22] net: fill in MODULE_DESCRIPTION()s for litex Breno Leitao
2024-01-22 20:48 ` Gabriel L. Somlo
2024-01-22 18:45 ` [PATCH net-next 12/22] net: fill in MODULE_DESCRIPTION()s for rvu_mbox Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 13/22] net: fill in MODULE_DESCRIPTION()s for encx24j600 Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 14/22] net: fill in MODULE_DESCRIPTION()s for ocelot Breno Leitao
2024-01-23 7:40 ` Horatiu Vultur
2024-01-23 7:48 ` Alexandre Belloni
2024-01-23 15:42 ` Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 15/22] net: fill in MODULE_DESCRIPTION()s for SMSC drivers Breno Leitao
2024-01-28 14:58 ` Andy Shevchenko
2024-01-22 18:45 ` [PATCH net-next 16/22] net: fill in MODULE_DESCRIPTION()s for Qualcom drivers Breno Leitao
2024-01-22 19:35 ` Subash Abhinov Kasiviswanathan (KS)
2024-01-22 18:45 ` [PATCH net-next 17/22] net: fill in MODULE_DESCRIPTION()s for Broadcom WLAN Breno Leitao
2024-01-23 6:38 ` Kalle Valo
2024-01-27 8:26 ` Arend van Spriel
2024-01-29 9:12 ` Breno Leitao
2024-01-23 11:47 ` Kalle Valo
2024-01-22 18:45 ` [PATCH net-next 18/22] net: fill in MODULE_DESCRIPTION()s for wlcore Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 19/22] net: fill in MODULE_DESCRIPTION()s for wl1251 and wl12xx Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 20/22] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga Breno Leitao
2024-01-22 18:45 ` Breno Leitao
2024-01-22 18:45 ` [PATCH net-next 21/22] net: fill in MODULE_DESCRIPTION()s for cpsw-common Breno Leitao
2024-01-23 9:50 ` Roger Quadros
2024-01-22 18:45 ` [PATCH net-next 22/22] net: fill in MODULE_DESCRIPTION()s for ec_bhf Breno Leitao
2024-01-22 18:57 ` [PATCH net-next 00/22] Fix MODULE_DESCRIPTION() for net (p2) Jakub Kicinski
2024-01-23 16:25 ` Breno Leitao
2024-01-23 16:35 ` Jakub Kicinski
2024-01-23 17:05 ` Breno Leitao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Za7FO7yBZ1a2KQ3B@gmail.com \
--to=leitao@debian.org \
--cc=Jose.Abreu@synopsys.com \
--cc=abeni@redhat.com \
--cc=andrew@lunn.ch \
--cc=angelogioacchino.delregno@collabora.com \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=ioana.ciornei@nxp.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux@armlinux.org.uk \
--cc=lynxis@fe80.eu \
--cc=matthias.bgg@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=weiwan@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.