diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-06-13 15:17:28 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-16 10:11:38 -0400 |
commit | 51855e8981e1b5e0a7b919662c32d0e4a374f575 (patch) | |
tree | 762738b85b584532488494177b725e284b82cb6e /drivers/net/mpc512x_fec.c | |
parent | f9e4afcd162301b3e32a9cceb9283005a8638bd1 (diff) | |
download | u-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.tar.gz |
treewide: remove unneeded semicolons
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/net/mpc512x_fec.c')
-rw-r--r-- | drivers/net/mpc512x_fec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/mpc512x_fec.c b/drivers/net/mpc512x_fec.c index b3746fbb9a..a18b959425 100644 --- a/drivers/net/mpc512x_fec.c +++ b/drivers/net/mpc512x_fec.c @@ -559,7 +559,7 @@ static int mpc512x_fec_recv (struct eth_device *dev) /* Graceful stop complete */ if (in_be32(&fec->eth->x_cntrl) & 0x00000001) { mpc512x_fec_halt (dev); - clrbits_be32(&fec->eth->x_cntrl, 0x00000001);; + clrbits_be32(&fec->eth->x_cntrl, 0x00000001); mpc512x_fec_init (dev, NULL); } } |