diff options
author | Yang Li <[email protected]> | 2021-02-03 10:58:07 +0800 |
---|---|---|
committer | Vinod Koul <[email protected]> | 2021-02-04 13:37:26 +0530 |
commit | 25e3ee590f62772f6016a5ec1a37367a1813e198 (patch) | |
tree | 9fd6c132fd8daa6215e67989c4fcdae57157441d | |
parent | 6b46e60a6943d629d69924be3169d8f214624ab2 (diff) |
phy: phy-brcm-sata: remove unneeded semicolon
Eliminate the following coccicheck warning:
./drivers/phy/broadcom/phy-brcm-sata.c:654:2-3: Unneeded semicolon
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vinod Koul <[email protected]>
-rw-r--r-- | drivers/phy/broadcom/phy-brcm-sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/broadcom/phy-brcm-sata.c b/drivers/phy/broadcom/phy-brcm-sata.c index 3ecf41359591..769c707d9b71 100644 --- a/drivers/phy/broadcom/phy-brcm-sata.c +++ b/drivers/phy/broadcom/phy-brcm-sata.c @@ -651,7 +651,7 @@ static int brcm_dsl_sata_init(struct brcm_sata_port *port) break; msleep(20); try--; - }; + } if (!try) { /* PLL did not lock; give up */ |