treewide: remove unneeded semicolons

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
master
Masahiro Yamada 7 years ago committed by Tom Rini
parent f9e4afcd16
commit 51855e8981
  1. 2
      arch/powerpc/cpu/ppc4xx/speed.c
  2. 2
      board/amcc/bamboo/bamboo.c
  3. 2
      board/amcc/luan/luan.c
  4. 2
      board/freescale/s32v234evb/clock.c
  5. 6
      board/ti/beagle/beagle.c
  6. 2
      board/tqc/tqm5200/cmd_stk52xx.c
  7. 2
      drivers/ddr/marvell/axp/ddr3_dqs.c
  8. 12
      drivers/mtd/dataflash.c
  9. 2
      drivers/net/fsl_mcdmafec.c
  10. 2
      drivers/net/mpc512x_fec.c
  11. 2
      drivers/net/ne2000_base.c
  12. 2
      fs/yaffs2/yaffs_uboot_glue.c
  13. 2
      include/linux/compat.h
  14. 2
      tools/img2srec.c

@ -709,7 +709,7 @@ unsigned long determine_pci_clock_per(void)
pci_period = PERIOD_66_66MHZ;
break;
default:
pci_period = PERIOD_33_33MHZ;;
pci_period = PERIOD_33_33MHZ;
break;
}

@ -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);
}

@ -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] */

@ -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;

@ -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;

@ -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 */

@ -1268,7 +1268,7 @@ int ddr3_set_dqs_centralization_results(MV_DRAM_INFO *dram_info, u32 cs,
max_pup = (ecc + (1 - ecc) * dram_info->num_of_std_pups);
DEBUG_DQS_RESULTS_S("\n############ LOG LEVEL 2(Windows margins) ############\n");;
DEBUG_DQS_RESULTS_S("\n############ LOG LEVEL 2(Windows margins) ############\n");
if (is_tx) {
DEBUG_DQS_RESULTS_C("DDR3 - DQS TX - Set Dqs Centralization Results - CS: ",

@ -49,7 +49,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
case AT45DB081:
@ -61,7 +61,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
case AT45DB161:
@ -73,7 +73,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
case AT45DB321:
@ -85,7 +85,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
case AT45DB642:
@ -97,7 +97,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
case AT45DB128:
@ -109,7 +109,7 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Desc.DataFlash_state = IDLE;
dataflash_info[i].logical_address = cs[i].addr;
dataflash_info[i].id = dfcode;
found[i] += dfcode;;
found[i] += dfcode;
break;
default:

@ -475,7 +475,7 @@ static void fec_halt(struct eth_device *dev)
/* Disable DMA tasks */
MCD_killDma(info->txTask);
MCD_killDma(info->rxTask);;
MCD_killDma(info->rxTask);
/* Disable the Ethernet Controller */
fecp->ecr &= ~FEC_ECR_ETHER_EN;

@ -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);
}
}

@ -495,7 +495,7 @@ dp83902a_recv(u8 *data, int len)
printf(" %02x", tmp);
if (0 == (++dx % 16)) printf("\n ");
#endif
*data++ = tmp;;
*data++ = tmp;
mlen--;
}
}

@ -320,7 +320,7 @@ void read_a_file(char *fn)
i++;
if (i > 32) {
printf("\n");
i = 0;;
i = 0;
}
}
printf("\n");

@ -109,7 +109,7 @@ static inline void kmem_cache_destroy(struct kmem_cache *cachep)
#define WARN_ON(condition) ({ \
int __ret_warn_on = !!(condition); \
if (unlikely(__ret_warn_on)) \
printf("WARNING in %s line %d\n", __FILE__, __LINE__);; \
printf("WARNING in %s line %d\n", __FILE__, __LINE__); \
unlikely(__ret_warn_on); \
})

@ -112,7 +112,7 @@ static char* ExtractDecimal (uint32_t* value, char* getPtr)
static void ExtractNumber (uint32_t* value, char* getPtr)
{
bool neg = false;;
bool neg = false;
while (*getPtr == ' ') getPtr++;
if (*getPtr == '-') {

Loading…
Cancel
Save