linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
To: Andrew Lunn <andrew@lunn.ch>, Heiner Kallweit <hkallweit1@gmail.com>
Cc: AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	"Ar__n__ __NAL" <arinc.unal@arinc9.com>,
	Daniel Golle <daniel@makrotopia.org>,
	"David S. Miller" <davem@davemloft.net>,
	DENG Qingfang <dqfext@gmail.com>,
	Eric Dumazet <edumazet@google.com>,
	Florian Fainelli <florian.fainelli@broadcom.com>,
	Jakub Kicinski <kuba@kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org,
	Matthias Brugger <matthias.bgg@gmail.com>,
	netdev@vger.kernel.org, Paolo Abeni <pabeni@redhat.com>,
	Sean Wang <sean.wang@mediatek.com>,
	Simon Horman <horms@kernel.org>,
	UNGLinuxDriver@microchip.com, Vladimir Oltean <olteanv@gmail.com>,
	Woojung Huh <woojung.huh@microchip.com>
Subject: [PATCH net-next 5/9] net: dsa: mt753x: implement .support_eee() method
Date: Tue, 10 Dec 2024 14:18:31 +0000	[thread overview]
Message-ID: <E1tL14J-006cZa-Rh@rmk-PC.armlinux.org.uk> (raw)
In-Reply-To: <Z1hNkEb13FMuDQiY@shell.armlinux.org.uk>

Implement the .support_eee() method by using the generic helper as all
user ports support EEE.

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
---
 drivers/net/dsa/mt7530.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 086b8b3d5b40..9605febd3573 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -3238,6 +3238,7 @@ const struct dsa_switch_ops mt7530_switch_ops = {
 	.port_mirror_add	= mt753x_port_mirror_add,
 	.port_mirror_del	= mt753x_port_mirror_del,
 	.phylink_get_caps	= mt753x_phylink_get_caps,
+	.support_eee		= dsa_supports_eee,
 	.get_mac_eee		= mt753x_get_mac_eee,
 	.set_mac_eee		= mt753x_set_mac_eee,
 	.conduit_state_change	= mt753x_conduit_state_change,
-- 
2.30.2



  parent reply	other threads:[~2024-12-10 14:36 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-10 14:17 [PATCH net-next 0/9] net: dsa: cleanup EEE (part 1) Russell King (Oracle)
2024-12-10 14:18 ` [PATCH net-next 1/9] net: dsa: remove check for dp->pl in EEE methods Russell King (Oracle)
2024-12-10 17:29   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 2/9] net: dsa: add hook to determine whether EEE is supported Russell King (Oracle)
2024-12-10 19:34   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 3/9] net: dsa: provide implementation of .support_eee() Russell King (Oracle)
2024-12-10 17:29   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 4/9] net: dsa: b53/bcm_sf2: implement .support_eee() method Russell King (Oracle)
2024-12-10 17:30   ` Florian Fainelli
2024-12-10 14:18 ` Russell King (Oracle) [this message]
2024-12-10 17:30   ` [PATCH net-next 5/9] net: dsa: mt753x: " Florian Fainelli
2024-12-10 21:45   ` arinc.unal
2024-12-10 14:18 ` [PATCH net-next 6/9] net: dsa: qca8k: " Russell King (Oracle)
2024-12-10 17:30   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 7/9] net: dsa: mv88e6xxx: " Russell King (Oracle)
2024-12-10 17:30   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 8/9] net: dsa: ksz: " Russell King (Oracle)
2024-12-10 17:30   ` Florian Fainelli
2024-12-10 14:18 ` [PATCH net-next 9/9] net: dsa: require .support_eee() method to be implemented Russell King (Oracle)
2024-12-10 17:31   ` Florian Fainelli
2024-12-11 15:59 ` [PATCH net-next 0/9] net: dsa: cleanup EEE (part 1) Vladimir Oltean
2024-12-11 16:00 ` Vladimir Oltean
2024-12-12  4:40 ` patchwork-bot+netdevbpf

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=E1tL14J-006cZa-Rh@rmk-PC.armlinux.org.uk \
    --to=rmk+kernel@armlinux.org.uk \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=andrew@lunn.ch \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=arinc.unal@arinc9.com \
    --cc=daniel@makrotopia.org \
    --cc=davem@davemloft.net \
    --cc=dqfext@gmail.com \
    --cc=edumazet@google.com \
    --cc=florian.fainelli@broadcom.com \
    --cc=hkallweit1@gmail.com \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    --cc=pabeni@redhat.com \
    --cc=sean.wang@mediatek.com \
    --cc=woojung.huh@microchip.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).