diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-06-13 06:17:28 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-16 14:11:38 (GMT) |
commit | 51855e8981e1b5e0a7b919662c32d0e4a374f575 (patch) | |
tree | 762738b85b584532488494177b725e284b82cb6e /board | |
parent | f9e4afcd162301b3e32a9cceb9283005a8638bd1 (diff) | |
download | u-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.tar.xz |
treewide: remove unneeded semicolons
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/amcc/bamboo/bamboo.c | 2 | ||||
-rw-r--r-- | board/amcc/luan/luan.c | 2 | ||||
-rw-r--r-- | board/freescale/s32v234evb/clock.c | 2 | ||||
-rw-r--r-- | board/ti/beagle/beagle.c | 6 | ||||
-rw-r--r-- | board/tqc/tqm5200/cmd_stk52xx.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/board/amcc/bamboo/bamboo.c b/board/amcc/bamboo/bamboo.c index 6a50b39..9f64207 100644 --- a/board/amcc/bamboo/bamboo.c +++ b/board/amcc/bamboo/bamboo.c @@ -1880,7 +1880,7 @@ void configure_ppc440ep_pins(void) if (ppc440ep_core_selection[PACKET_REJ_FUNC_EN] == CORE_SELECTED) { mfsdr(SDR0_MFR, sdr0_mfr); - sdr0_mfr = (sdr0_mfr & ~SDR0_MFR_PKT_REJ_MASK) | SDR0_MFR_PKT_REJ_EN;; + sdr0_mfr = (sdr0_mfr & ~SDR0_MFR_PKT_REJ_MASK) | SDR0_MFR_PKT_REJ_EN; mtsdr(SDR0_MFR, sdr0_mfr); } diff --git a/board/amcc/luan/luan.c b/board/amcc/luan/luan.c index 774671d..f98231a 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] */ diff --git a/board/freescale/s32v234evb/clock.c b/board/freescale/s32v234evb/clock.c index d218c21..e8996e0 100644 --- a/board/freescale/s32v234evb/clock.c +++ b/board/freescale/s32v234evb/clock.c @@ -45,7 +45,7 @@ static int select_pll_source_clk(enum pll_type pll, u32 refclk_freq) pll_idx = 1; break; case DDR_PLL: - pll_idx = 2;; + pll_idx = 2; break; default: pll_idx = pll; diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 00d127e..887b577 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; diff --git a/board/tqc/tqm5200/cmd_stk52xx.c b/board/tqc/tqm5200/cmd_stk52xx.c index dc22ee4..a3916ed 100644 --- a/board/tqc/tqm5200/cmd_stk52xx.c +++ b/board/tqc/tqm5200/cmd_stk52xx.c @@ -142,7 +142,7 @@ void amplifier_init(void) static void i2s_init(void) { unsigned long i; - struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2;; + struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2; struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO; gpio->port_config |= 0x00000070; /* PSC2 ports as Codec with MCLK */ |