From: Daniel Golle <daniel@makrotopia.org>
To: "Arınç ÜNAL" <arinc.unal@arinc9.com>
Cc: "Russell King (Oracle)" <linux@armlinux.org.uk>,
DENG Qingfang <dqfext@gmail.com>,
Sean Wang <sean.wang@mediatek.com>, Andrew Lunn <andrew@lunn.ch>,
Florian Fainelli <f.fainelli@gmail.com>,
Vladimir Oltean <olteanv@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
mithat.guner@xeront.com, erkin.bozoglu@xeront.com,
Bartel Eerdekens <bartel.eerdekens@constell8.be>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Subject: Re: [PATCH net-next v3 4/7] net: dsa: mt7530: move XTAL check to mt7530_setup()
Date: Fri, 2 Feb 2024 18:39:18 +0000 [thread overview]
Message-ID: <Zb021ozEQSbU-gPd@makrotopia.org> (raw)
In-Reply-To: <5b744f7f-2f63-4219-a0e9-8f08267b1fdd@arinc9.com>
On Fri, Feb 02, 2024 at 09:16:02PM +0300, Arınç ÜNAL wrote:
> On 2.02.2024 14:48, Russell King (Oracle) wrote:
> > On Fri, Feb 02, 2024 at 12:19:10PM +0300, Arınç ÜNAL via B4 Relay wrote:
> > > From: Arınç ÜNAL <arinc.unal@arinc9.com>
> > >
> > > The crystal frequency concerns the switch core. The frequency should be
> > > checked when the switch is being set up so the driver can reject the
> > > unsupported hardware earlier and without requiring port 6 to be used.
> > >
> > > Move it to mt7530_setup(). Drop the unnecessary function printing.
> > >
> > > Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
> > > Reviewed-by: Andrew Lunn <andrew@lunn.ch>
> > > Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
> >
> > I would prefer this to be earlier in the series, before patch 2 which
> > moves mt7530_setup_port6() to be called from mac_config(). mac_config()
> > is supposed to be configuration error-free - in other words, all state
> > should have been checked before hand.
>
> I agree but mt7530_mac_config() is not a void function yet. The
> mac_port_config member of the mt753x_info structure points to this
> function. My next patch series gets rid of all useless error returns on the
> phylink path and change mac_port_config to void. So I don't think working
> on this patch series further will worth the effort. I'd rather have this
> version applied as is.
I agree regarding not changing the patch itself, but I also agree
with Russell regarding the patch ordering. I know it's a 10-minute
git headache to rebase the patches on top of each other in a different
order, but you can easily compare the end result being identical to
what you had before and hence don't need to retest.
WARNING: multiple messages have this Message-ID (diff)
From: Daniel Golle <daniel@makrotopia.org>
To: "Arınç ÜNAL" <arinc.unal@arinc9.com>
Cc: "Russell King (Oracle)" <linux@armlinux.org.uk>,
DENG Qingfang <dqfext@gmail.com>,
Sean Wang <sean.wang@mediatek.com>, Andrew Lunn <andrew@lunn.ch>,
Florian Fainelli <f.fainelli@gmail.com>,
Vladimir Oltean <olteanv@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
mithat.guner@xeront.com, erkin.bozoglu@xeront.com,
Bartel Eerdekens <bartel.eerdekens@constell8.be>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Subject: Re: [PATCH net-next v3 4/7] net: dsa: mt7530: move XTAL check to mt7530_setup()
Date: Fri, 2 Feb 2024 18:39:18 +0000 [thread overview]
Message-ID: <Zb021ozEQSbU-gPd@makrotopia.org> (raw)
In-Reply-To: <5b744f7f-2f63-4219-a0e9-8f08267b1fdd@arinc9.com>
On Fri, Feb 02, 2024 at 09:16:02PM +0300, Arınç ÜNAL wrote:
> On 2.02.2024 14:48, Russell King (Oracle) wrote:
> > On Fri, Feb 02, 2024 at 12:19:10PM +0300, Arınç ÜNAL via B4 Relay wrote:
> > > From: Arınç ÜNAL <arinc.unal@arinc9.com>
> > >
> > > The crystal frequency concerns the switch core. The frequency should be
> > > checked when the switch is being set up so the driver can reject the
> > > unsupported hardware earlier and without requiring port 6 to be used.
> > >
> > > Move it to mt7530_setup(). Drop the unnecessary function printing.
> > >
> > > Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
> > > Reviewed-by: Andrew Lunn <andrew@lunn.ch>
> > > Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
> >
> > I would prefer this to be earlier in the series, before patch 2 which
> > moves mt7530_setup_port6() to be called from mac_config(). mac_config()
> > is supposed to be configuration error-free - in other words, all state
> > should have been checked before hand.
>
> I agree but mt7530_mac_config() is not a void function yet. The
> mac_port_config member of the mt753x_info structure points to this
> function. My next patch series gets rid of all useless error returns on the
> phylink path and change mac_port_config to void. So I don't think working
> on this patch series further will worth the effort. I'd rather have this
> version applied as is.
I agree regarding not changing the patch itself, but I also agree
with Russell regarding the patch ordering. I know it's a 10-minute
git headache to rebase the patches on top of each other in a different
order, but you can easily compare the end result being identical to
what you had before and hence don't need to retest.
_______________________________________________
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-02-02 20:48 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-02 9:19 [PATCH net-next v3 0/7] MT7530 DSA Subdriver Improvements Act II Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` [PATCH net-next v3 1/7] net: dsa: mt7530: empty default case on mt7530_setup_port5() Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:40 ` Russell King (Oracle)
2024-02-02 11:40 ` Russell King (Oracle)
2024-02-02 17:44 ` Arınç ÜNAL
2024-02-02 17:44 ` Arınç ÜNAL
2024-02-02 18:05 ` Russell King (Oracle)
2024-02-02 18:05 ` Russell King (Oracle)
2024-02-02 20:25 ` Andrew Lunn
2024-02-02 20:25 ` Andrew Lunn
2024-02-05 20:29 ` Vladimir Oltean
2024-02-05 20:29 ` Vladimir Oltean
2024-02-02 9:19 ` [PATCH net-next v3 2/7] net: dsa: mt7530: call port 6 setup from mt7530_mac_config() Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:45 ` Russell King (Oracle)
2024-02-02 11:45 ` Russell King (Oracle)
2024-02-02 9:19 ` [PATCH net-next v3 3/7] net: dsa: mt7530: remove pad_setup function pointer Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:46 ` Russell King (Oracle)
2024-02-02 11:46 ` Russell King (Oracle)
2024-02-02 9:19 ` [PATCH net-next v3 4/7] net: dsa: mt7530: move XTAL check to mt7530_setup() Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:48 ` Russell King (Oracle)
2024-02-02 11:48 ` Russell King (Oracle)
2024-02-02 18:16 ` Arınç ÜNAL
2024-02-02 18:16 ` Arınç ÜNAL
2024-02-02 18:39 ` Daniel Golle [this message]
2024-02-02 18:39 ` Daniel Golle
2024-02-04 13:55 ` Arınç ÜNAL
2024-02-04 13:55 ` Arınç ÜNAL
2024-02-04 14:18 ` Russell King (Oracle)
2024-02-04 14:18 ` Russell King (Oracle)
2024-02-04 15:55 ` Arınç ÜNAL
2024-02-04 15:55 ` Arınç ÜNAL
2024-02-04 16:38 ` Russell King (Oracle)
2024-02-04 16:38 ` Russell King (Oracle)
2024-02-04 16:51 ` Arınç ÜNAL
2024-02-04 16:51 ` Arınç ÜNAL
2024-02-04 17:07 ` Russell King (Oracle)
2024-02-04 17:07 ` Russell King (Oracle)
2024-02-04 17:14 ` Arınç ÜNAL
2024-02-04 17:14 ` Arınç ÜNAL
2024-02-02 9:19 ` [PATCH net-next v3 5/7] net: dsa: mt7530: simplify mt7530_setup_port6() and change to void Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:51 ` Russell King (Oracle)
2024-02-02 11:51 ` Russell King (Oracle)
2024-02-02 9:19 ` [PATCH net-next v3 6/7] net: dsa: mt7530: correct port capabilities of MT7988 Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` [PATCH net-next v3 7/7] net: dsa: mt7530: do not clear config->supported_interfaces Arınç ÜNAL
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 9:19 ` Arınç ÜNAL via B4 Relay
2024-02-02 11:52 ` Russell King (Oracle)
2024-02-02 11:52 ` Russell King (Oracle)
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=Zb021ozEQSbU-gPd@makrotopia.org \
--to=daniel@makrotopia.org \
--cc=andrew@lunn.ch \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arinc.unal@arinc9.com \
--cc=bartel.eerdekens@constell8.be \
--cc=davem@davemloft.net \
--cc=dqfext@gmail.com \
--cc=edumazet@google.com \
--cc=erkin.bozoglu@xeront.com \
--cc=f.fainelli@gmail.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=matthias.bgg@gmail.com \
--cc=mithat.guner@xeront.com \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=sean.wang@mediatek.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.