diff options
author | Shubhankar Kuranagatti <shubhankarvk@gmail.com> | 2021-04-28 22:25:15 +0530 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-05-31 14:08:55 +0530 |
commit | 3136b3b1d216c0bee448ff6fca99ec252b8493b7 (patch) | |
tree | e2d882fcf248fb415fc30c71de73299dfff06c2b /drivers/phy | |
parent | be0ddb5dfd8b6f3f32e493d34f3819182f354d5e (diff) |
phy: phy-xgene.c: Fix alignment of comment
A * has been added at the starting of new line
The closing */ of multi line comment shifted to new line
This is done to maintain code uniformity.
Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
Link: https://lore.kernel.org/r/20210428165515.o47o5awzdxirxkqi@kewl-virtual-machine
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/phy-xgene.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/phy/phy-xgene.c b/drivers/phy/phy-xgene.c index f4cd590fbde7..d0f4546648f0 100644 --- a/drivers/phy/phy-xgene.c +++ b/drivers/phy/phy-xgene.c @@ -961,7 +961,8 @@ static void xgene_phy_sata_cfg_lanes(struct xgene_phy_ctx *ctx) serdes_wr(ctx, lane, RXTX_REG1, val); /* Latch VTT value based on the termination to ground and - enable TX FIFO */ + * enable TX FIFO + */ serdes_rd(ctx, lane, RXTX_REG2, &val); val = RXTX_REG2_VTT_ENA_SET(val, 0x1); val = RXTX_REG2_VTT_SEL_SET(val, 0x1); |