Message ID | 20210407002359.1860770-1-kuba@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 56f15e2cb1f77fbcf9df38de7e5dcb4b37070196 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] ethtool: document PHY tunable callbacks | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | warning | 6 maintainers not CCed: amitc@mellanox.com gustavo@embeddedor.com acardace@redhat.com danieller@nvidia.com irusskikh@marvell.com alexanderduyck@fb.com |
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: 3014 this patch: 3014 |
netdev/kdoc | success | Errors and warnings before: 14 this patch: 12 |
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: 3131 this patch: 3131 |
netdev/header_inline | success | Link |
On Tue, Apr 06, 2021 at 05:23:59PM -0700, Jakub Kicinski wrote: > Add missing kdoc for phy tunable callbacks. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
On 4/6/2021 5:23 PM, Jakub Kicinski wrote: > Add missing kdoc for phy tunable callbacks. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Tue, 6 Apr 2021 17:23:59 -0700 you wrote: > Add missing kdoc for phy tunable callbacks. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- > Targetting net-next to avoid conflict with upcoming patches. > Should apply cleanly to both trees. > > [...] Here is the summary with links: - [net-next] ethtool: document PHY tunable callbacks https://git.kernel.org/netdev/net-next/c/56f15e2cb1f7 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index 3583f7fc075c..5c631a298994 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h @@ -410,6 +410,8 @@ struct ethtool_pause_stats { * @get_ethtool_phy_stats: Return extended statistics about the PHY device. * This is only useful if the device maintains PHY statistics and * cannot use the standard PHY library helpers. + * @get_phy_tunable: Read the value of a PHY tunable. + * @set_phy_tunable: Set the value of a PHY tunable. * * All operations are optional (i.e. the function pointer may be set * to %NULL) and callers must take this into account. Callers must
Add missing kdoc for phy tunable callbacks. Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- Targetting net-next to avoid conflict with upcoming patches. Should apply cleanly to both trees. include/linux/ethtool.h | 2 ++ 1 file changed, 2 insertions(+)