diff options
author | Wenpeng Liang <liangwenpeng@huawei.com> | 2021-06-16 13:01:20 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-16 22:34:07 +0300 |
commit | 1953feb022154e19c5953988fd3dd65ebc769dc9 (patch) | |
tree | 847f9ffbad18abbb84f31de63353296c6cd49aec /drivers/net/phy/lxt.c | |
parent | 775f25479df924611fc482a602d147a43ac93702 (diff) | |
download | linux-1953feb022154e19c5953988fd3dd65ebc769dc9.tar.xz |
net: phy: correct format of block comments
Block comments should not use a trailing */ on a separate line and every
line of a block comment should start with an '*'.
Signed-off-by: Wenpeng Liang <liangwenpeng@huawei.com>
Signed-off-by: Weihang Li <liweihang@huawei.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/lxt.c')
-rw-r--r-- | drivers/net/phy/lxt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/lxt.c b/drivers/net/phy/lxt.c index bde3356a2f86..e3bf827b7959 100644 --- a/drivers/net/phy/lxt.c +++ b/drivers/net/phy/lxt.c @@ -242,8 +242,8 @@ static int lxt973a2_read_status(struct phy_device *phydev) return lpa; /* If both registers are equal, it is suspect but not - * impossible, hence a new try - */ + * impossible, hence a new try + */ } while (lpa == adv && retry--); mii_lpa_to_linkmode_lpa_t(phydev->lp_advertising, lpa); |