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 /board/amcc/luan/luan.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 'board/amcc/luan/luan.c')
-rw-r--r-- | board/amcc/luan/luan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amcc/luan/luan.c b/board/amcc/luan/luan.c index 774671db43..f98231a8da 100644 --- a/board/amcc/luan/luan.c +++ b/board/amcc/luan/luan.c @@ -161,7 +161,7 @@ static void l2cache_enable(void) /* see p258 7.4.1 Enabling L2 Cache */ mtdcr( L2_CACHE_CMD, 0x80000000 ); /* issue HCLEAR command via L2_CMD */ - while (!(mfdcr( L2_CACHE_STAT ) & 0x80000000 )) ;; /* poll L2_SR for completion */ + while (!(mfdcr( L2_CACHE_STAT ) & 0x80000000 )) ; /* poll L2_SR for completion */ mtdcr( L2_CACHE_CMD, 0x10000000 ); /* clear cache errors L2_CMD[CCP] */ |