diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2017-06-04 19:46:53 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-05 11:28:50 -0400 |
commit | 6c6ab3e73b391b38c9749c77775bf21479ed7d60 (patch) | |
tree | 39cfe9dbd0ac5d4d62b970095096d7d395e17d22 /drivers/net/phy | |
parent | 6044bd4a7d580d4459b992bc6631c817486a1514 (diff) | |
download | linux-6c6ab3e73b391b38c9749c77775bf21479ed7d60.tar.bz2 |
net: phy: fix kernel-doc warnings
Fix kernel-doc warnings (typo) in drivers/net/phy/phy.c:
..//drivers/net/phy/phy.c:259: warning: No description found for parameter 'features'
..//drivers/net/phy/phy.c:259: warning: Excess function parameter 'feature' description in 'phy_lookup_setting'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 82ab8fb82587..7524caa0f29d 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -241,7 +241,7 @@ static const struct phy_setting settings[] = { * phy_lookup_setting - lookup a PHY setting * @speed: speed to match * @duplex: duplex to match - * @feature: allowed link modes + * @features: allowed link modes * @exact: an exact match is required * * Search the settings array for a setting that matches the speed and |