diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2021-02-03 03:58:07 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-02-04 09:07:26 +0100 |
commit | 25e3ee590f62772f6016a5ec1a37367a1813e198 (patch) | |
tree | 9fd6c132fd8daa6215e67989c4fcdae57157441d /drivers/phy | |
parent | phy: USB_LGM_PHY should depend on X86 (diff) | |
download | linux-25e3ee590f62772f6016a5ec1a37367a1813e198.tar.xz linux-25e3ee590f62772f6016a5ec1a37367a1813e198.zip |
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 <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/1612321087-14743-1-git-send-email-yang.lee@linux.alibaba.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-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 */ |