diff options
author | Tom Rix <trix@redhat.com> | 2020-10-31 08:30:47 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-02 17:51:28 -0800 |
commit | 0e8c266c59b56acc94d3289d3b3fb142d22fb46c (patch) | |
tree | 1e83dc53497063d5391b6ccba887e01c231c4673 /drivers/net/dsa/mt7530.c | |
parent | c568db7fd0017b310569515b57927dd89d31642b (diff) | |
download | linux-stable-0e8c266c59b56acc94d3289d3b3fb142d22fb46c.tar.gz linux-stable-0e8c266c59b56acc94d3289d3b3fb142d22fb46c.tar.bz2 linux-stable-0e8c266c59b56acc94d3289d3b3fb142d22fb46c.zip |
net: dsa: mt7530: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201031153047.2147341-1-trix@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/dsa/mt7530.c')
-rw-r--r-- | drivers/net/dsa/mt7530.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c index de7692b763d8..771f58f50d61 100644 --- a/drivers/net/dsa/mt7530.c +++ b/drivers/net/dsa/mt7530.c @@ -558,7 +558,7 @@ mt7531_pad_setup(struct dsa_switch *ds, phy_interface_t interface) val |= 0x190000 << RG_COREPLL_SDM_PCW_S; mt7530_write(priv, MT7531_PLLGP_CR0, val); break; - }; + } /* Set feedback divide ratio update signal to high */ val = mt7530_read(priv, MT7531_PLLGP_CR0); |