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/ti/beagle | |
parent | f9e4afcd162301b3e32a9cceb9283005a8638bd1 (diff) | |
download | u-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.tar.gz u-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.tar.bz2 u-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.zip |
treewide: remove unneeded semicolons
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'board/ti/beagle')
-rw-r--r-- | board/ti/beagle/beagle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 00d127e21b..887b577b6a 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -443,13 +443,13 @@ int misc_init_r(void) printf("Recognized BeagleBoardToys WiFi board\n"); MUX_BBTOYS_WIFI() setenv("buddy", "bbtoys-wifi"); - break;; + break; case BBTOYS_VGA: printf("Recognized BeagleBoardToys VGA board\n"); - break;; + break; case BBTOYS_LCD: printf("Recognized BeagleBoardToys LCD board\n"); - break;; + break; case BCT_BRETTL3: printf("Recognized bct electronic GmbH brettl3 board\n"); break; |