diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-12-14 22:37:50 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-12-16 13:08:18 -0800 |
commit | 767143a18d6d743d4254de5cf55b1bd87bb2af18 (patch) | |
tree | 70e523050e9f020eb2a200c3bca03b8b8ae24e14 /include/linux/phy.h | |
parent | c32c928d29deb2636e5889f59305cc15b004909f (diff) |
phy: fix kdoc warning
Kdoc does not like it when multiline comment follows the networking
style of starting right on the first line:
include/linux/phy.h:869: warning: Function parameter or member 'config_intr' not described in 'phy_driver'
Link: https://lore.kernel.org/r/20201215063750.3120976-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r-- | include/linux/phy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 381a95732b6a..9effb511acde 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -743,7 +743,8 @@ struct phy_driver { /** @read_status: Determines the negotiated speed and duplex */ int (*read_status)(struct phy_device *phydev); - /** @config_intr: Enables or disables interrupts. + /** + * @config_intr: Enables or disables interrupts. * It should also clear any pending interrupts prior to enabling the * IRQs and after disabling them. */ |