Message ID | 20231223050613.13978-1-rdunlap@infradead.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 059d37b718d38d26087121c754691df77acfc66b |
Headers | show |
Series | net: phy: linux/phy.h: fix Excess kernel-doc description warning | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
On Fri, Dec 22, 2023 at 09:06:13PM -0800, Randy Dunlap wrote: > Remove the @phy_timer: line to prevent the kernel-doc warning: > > include/linux/phy.h:768: warning: Excess struct member 'phy_timer' description in 'phy_device' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Cc: Andrew Lunn <andrew@lunn.ch> > Cc: Heiner Kallweit <hkallweit1@gmail.com> > Cc: Russell King <linux@armlinux.org.uk> > Cc: netdev@vger.kernel.org > --- Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Thanks!
Hello: This patch was applied to netdev/net.git (main) by David S. Miller <davem@davemloft.net>: On Fri, 22 Dec 2023 21:06:13 -0800 you wrote: > Remove the @phy_timer: line to prevent the kernel-doc warning: > > include/linux/phy.h:768: warning: Excess struct member 'phy_timer' description in 'phy_device' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Cc: Andrew Lunn <andrew@lunn.ch> > Cc: Heiner Kallweit <hkallweit1@gmail.com> > Cc: Russell King <linux@armlinux.org.uk> > Cc: netdev@vger.kernel.org > > [...] Here is the summary with links: - net: phy: linux/phy.h: fix Excess kernel-doc description warning https://git.kernel.org/netdev/net/c/059d37b718d3 You are awesome, thank you!
diff -- a/include/linux/phy.h b/include/linux/phy.h --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -569,7 +569,6 @@ struct macsec_ops; * - Bits [31:24] are reserved for defining generic * PHY driver behavior. * @irq: IRQ number of the PHY's interrupt (-1 if none) - * @phy_timer: The timer for handling the state machine * @phylink: Pointer to phylink instance for this PHY * @sfp_bus_attached: Flag indicating whether the SFP bus has been attached * @sfp_bus: SFP bus attached to this PHY's fiber port
Remove the @phy_timer: line to prevent the kernel-doc warning: include/linux/phy.h:768: warning: Excess struct member 'phy_timer' description in 'phy_device' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Andrew Lunn <andrew@lunn.ch> Cc: Heiner Kallweit <hkallweit1@gmail.com> Cc: Russell King <linux@armlinux.org.uk> Cc: netdev@vger.kernel.org --- include/linux/phy.h | 1 - 1 file changed, 1 deletion(-)