Message ID | 20210428095356.621536-1-fido_max@inbox.ru (mailing list archive) |
---|---|
State | Accepted |
Commit | 65ad85f63b15af6995473724ab8562772db22753 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [1/1] net: phy: marvell: add downshift support for M88E1240 | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | success | CCed 6 of 6 maintainers |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Wed, 28 Apr 2021 12:53:56 +0300 you wrote: > Add downshift support for 88E1240, it uses the same downshift > configuration registers as 88E1011. > > Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru> > --- > drivers/net/phy/marvell.c | 2 ++ > 1 file changed, 2 insertions(+) Here is the summary with links: - [1/1] net: phy: marvell: add downshift support for M88E1240 https://git.kernel.org/netdev/net-next/c/65ad85f63b15 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index a61fde7013bd..0b2cccb0d865 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -2870,6 +2870,8 @@ static struct phy_driver marvell_drivers[] = { .get_sset_count = marvell_get_sset_count, .get_strings = marvell_get_strings, .get_stats = marvell_get_stats, + .get_tunable = m88e1011_get_tunable, + .set_tunable = m88e1011_set_tunable, }, { .phy_id = MARVELL_PHY_ID_88E1116R,
Add downshift support for 88E1240, it uses the same downshift configuration registers as 88E1011. Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru> --- drivers/net/phy/marvell.c | 2 ++ 1 file changed, 2 insertions(+)