Changeset 721fe34 in rtems


Ignore:
Timestamp:
05/31/12 20:34:36 (12 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
1869bb7
Parents:
5f0cd34
Message:

Fix C files which had two semi-colons at EOL

Files:
25 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/arm/nds/libfat/source/disc_io/io_fcsr.c

    r5f0cd34 r721fe34  
    122122        bool flagSramSector = false;
    123123        int readLength = numSectors * BYTES_PER_READ;
    124         u8* src;;
     124        u8* src;
    125125        u8* dst;
    126126
  • c/src/lib/libbsp/arm/nds/libnds/source/common/card.c

    r5f0cd34 r721fe34  
    4545void cardPolledTransfer(uint32 flags, uint32 * destination, uint32 length, const uint8 * command) {
    4646//---------------------------------------------------------------------------------
    47         u32 data;;
     47        u32 data;
    4848        cardWriteCommand(command);
    4949        CARD_CR2 = flags;
     
    6969        DMA_SRC(channel) = (uint32)&CARD_DATA_RD;
    7070        DMA_DEST(channel) = (uint32)destination;
    71         DMA_CR(channel) = DMA_ENABLE | DMA_START_CARD | DMA_32_BIT | DMA_REPEAT | DMA_SRC_FIX | 0x0001;;
     71        DMA_CR(channel) = DMA_ENABLE | DMA_START_CARD | DMA_32_BIT | DMA_REPEAT | DMA_SRC_FIX | 0x0001;
    7272
    7373        CARD_CR2 = flags;
  • c/src/lib/libbsp/bfin/TLL6527M/startup/bspstart.c

    r5f0cd34 r721fe34  
    141141
    142142  /* Configure PLL registers */
    143   *((uint16_t*)PLL_DIV) = ssel;;
     143  *((uint16_t*)PLL_DIV) = ssel;
    144144  msel = msel<<9;
    145145  *((uint16_t*)PLL_CTL) = msel;
  • c/src/lib/libbsp/m68k/av5282/network/network.c

    r5f0cd34 r721fe34  
    443443             */
    444444            struct ether_header *eh;
    445             int len = rxBd->length - sizeof(uint32_t);;
     445            int len = rxBd->length - sizeof(uint32_t);
    446446
    447447            /*
  • c/src/lib/libbsp/m68k/mcf5235/network/network.c

    r5f0cd34 r721fe34  
    424424             */
    425425            struct ether_header *eh;
    426             int len = rxBd->length - sizeof(uint32_t);;
     426            int len = rxBd->length - sizeof(uint32_t);
    427427
    428428            /*
  • c/src/lib/libbsp/m68k/mcf5329/network/network.c

    r5f0cd34 r721fe34  
    416416       */
    417417      struct ether_header *eh;
    418       int len = rxBd->length - sizeof(uint32_t);;
     418      int len = rxBd->length - sizeof(uint32_t);
    419419
    420420      m = sc->rxMbuf[rxBdIndex];
  • c/src/lib/libbsp/m68k/uC5282/network/network.c

    r5f0cd34 r721fe34  
    480480             */
    481481            struct ether_header *eh;
    482             int len = rxBd->length - sizeof(uint32_t);;
     482            int len = rxBd->length - sizeof(uint32_t);
    483483
    484484            m = sc->rxMbuf[rxBdIndex];
  • c/src/lib/libbsp/powerpc/beatnik/flash/flashcfg.c

    r5f0cd34 r721fe34  
    144144                        *p |= swp;
    145145                } else {
    146                         *p &= ~swp;;
     146                        *p &= ~swp;
    147147                }
    148148        }
  • c/src/lib/libbsp/powerpc/shared/flash/spansionFlash.c

    r5f0cd34 r721fe34  
    180180
    181181        if ( 1 == b->width )
    182                 off <<= 1;;
     182                off <<= 1;
    183183
    184184        a = ADDR32(b, a, off);
  • c/src/lib/libbsp/powerpc/shared/irq/irq_init.c

    r5f0cd34 r721fe34  
    234234    outb(tmp, ISA8259_S_ELCR);
    235235    tmp = ELCRM_INT5_LVL;
    236     outb(tmp, ISA8259_M_ELCR);;
     236    outb(tmp, ISA8259_M_ELCR);
    237237    /*
    238238     * Set the Interrupt inputs to non-inverting level interrupt
  • c/src/lib/libbsp/shared/vmeUniverse/vmeUniverse.c

    r5f0cd34 r721fe34  
    14591459        {
    14601460        /* help the compiler allocate registers */
    1461         register volatile LERegister *b=base;;
     1461        register volatile LERegister *b=base;
    14621462        register unsigned long dgcsoff=UNIV_REGOFF_DGCS,dgcs;
    14631463
  • c/src/lib/libcpu/bfin/serial/uart.c

    r5f0cd34 r721fe34  
    532532rtems_device_driver bfin_uart_open(rtems_device_major_number major,
    533533    rtems_device_minor_number minor, void *arg) {
    534   rtems_status_code             sc    = RTEMS_NOT_DEFINED;;
     534  rtems_status_code             sc    = RTEMS_NOT_DEFINED;
    535535  rtems_libio_open_close_args_t *args = NULL;
    536536
  • c/src/lib/libcpu/powerpc/ppc403/console/console405.c

    r5f0cd34 r721fe34  
    249249
    250250  /* Wait for character */
    251   while ((port->LSR & LSR_RSR)==0);;
     251  while ((port->LSR & LSR_RSR)==0);
    252252
    253253  return port->RBR;
     
    260260
    261261  while (len-- > 0) {
    262     while (!(port->LSR & LSR_THE));;
     262    while (!(port->LSR & LSR_THE));
    263263    port->THR = *buf++;
    264264  }
  • c/src/lib/libcpu/powerpc/ppc403/tty_drv/tty_drv.c

    r5f0cd34 r721fe34  
    213213
    214214  /* Wait for character */
    215   while ((tty0port->LSR & LSR_RSR)==0);;
     215  while ((tty0port->LSR & LSR_RSR)==0);
    216216
    217217  return tty0port->RBR;
     
    224224
    225225  while (len-- > 0) {
    226     while (!(tty0port->LSR & LSR_THE));;
     226    while (!(tty0port->LSR & LSR_THE));
    227227    tty0port->THR = *buf++;
    228228  }
  • cpukit/libblock/src/bdbuf.c

    r5f0cd34 r721fe34  
    27022702  rtems_bdbuf_swapout_transfer transfer;
    27032703  uint32_t                     period_in_ticks;
    2704   const uint32_t               period_in_msecs = bdbuf_config.swapout_period;;
     2704  const uint32_t               period_in_msecs = bdbuf_config.swapout_period;
    27052705  uint32_t                     timer_delta;
    27062706
  • cpukit/libfs/src/dosfs/msdos_misc.c

    r5f0cd34 r721fe34  
    801801      uint32_t sec = (fat_cluster_num_to_sector_num(mt_entry, start.cln) +
    802802                      (start.ofs >> fs_info->fat.vol.sec_log2));
    803       uint32_t byte = (start.ofs & (fs_info->fat.vol.bps - 1));;
     803      uint32_t byte = (start.ofs & (fs_info->fat.vol.bps - 1));
    804804
    805805      ret = _fat_block_write(mt_entry, sec, byte + MSDOS_FILE_NAME_OFFSET, 1,
  • cpukit/libi2c/libi2c.c

    r5f0cd34 r721fe34  
    451451        i = -err;
    452452      } else {
    453         busses[i].name = nmcpy;;
     453        busses[i].name = nmcpy;
    454454        nmcpy = 0;
    455455      }
  • cpukit/libmisc/capture/capture.c

    r5f0cd34 r721fe34  
    10481048  else
    10491049  {
    1050     capture_extension_index = rtems_object_id_get_index (capture_id);;
     1050    capture_extension_index = rtems_object_id_get_index (capture_id);
    10511051  }
    10521052
  • cpukit/score/src/coremsgflushsupp.c

    r5f0cd34 r721fe34  
    8686  _ISR_Disable( level );
    8787    inactive_head = _Chain_Head( &the_message_queue->Inactive_messages );
    88     inactive_first = inactive_head->next;;
     88    inactive_first = inactive_head->next;
    8989    message_queue_first = _Chain_First( &the_message_queue->Pending_messages );
    9090    message_queue_last = _Chain_Last( &the_message_queue->Pending_messages );
  • cpukit/score/src/heapresizeblock.c

    r5f0cd34 r721fe34  
    4545  Heap_Block *next_block = _Heap_Block_at( block, block_size );
    4646  uintptr_t next_block_size = _Heap_Block_size( next_block );
    47   bool next_block_is_free = _Heap_Is_free( next_block );;
     47  bool next_block_is_free = _Heap_Is_free( next_block );
    4848
    4949  _HAssert( _Heap_Is_block_in_heap( heap, next_block ) );
  • testsuites/libtests/cpuuse/tswitch.c

    r5f0cd34 r721fe34  
    3030struct taskSwitchLog taskSwitchLog[25];
    3131int taskSwitchLogIndex;
    32 volatile int testsFinished;;
     32volatile int testsFinished;
    3333
    3434void Task_switch(
  • testsuites/libtests/flashdisk01/init.c

    r5f0cd34 r721fe34  
    228228  int eno = 0;
    229229  const uint8_t *current = get_data_pointer(sd, segment, offset);
    230   const uint8_t *end = current + size;;
     230  const uint8_t *end = current + size;
    231231
    232232  while (eno == 0 && current != end) {
  • testsuites/libtests/termios04/termios_testdriver_intr.c

    r5f0cd34 r721fe34  
    190190  status = rtems_timer_create(rtems_build_name('T', 'M', 'R', 'X'), &Rx_Timer);
    191191  if ( status )
    192     rtems_fatal_error_occurred(1);;
     192    rtems_fatal_error_occurred(1);
    193193
    194194  status = rtems_timer_create(rtems_build_name('T', 'M', 'T', 'X'), &Tx_Timer);
    195195  if ( status )
    196     rtems_fatal_error_occurred(1);;
     196    rtems_fatal_error_occurred(1);
    197197
    198198  return RTEMS_SUCCESSFUL;
  • testsuites/psxtests/psxmsgq01/init.c

    r5f0cd34 r721fe34  
    4949void verify_notify(void);
    5050void verify_with_threads(void);
    51 void verify_timedout_mq_timedreceive(
    52         char *task_name, int que, int is_blocking);;
     51void verify_timedout_mq_timedreceive(char *task_name, int que, int is_blocking);
    5352void verify_timedout_mq_timedsend(int que, int is_blocking);
    5453void verify_timed_receive(void);
  • testsuites/samples/paranoia/paranoia.c

    r5f0cd34 r721fe34  
    14721472            UfThold = Y;
    14731473            BadCond (Failure, "Either accuracy deteriorates as numbers\n");
    1474             printf ("approach a threshold = %.17e\n", UfThold);;
     1474            printf ("approach a threshold = %.17e\n", UfThold);
    14751475            printf (" coming down from %.17e\n", C);
    14761476            printf (" or else multiplication gets too many last digits wrong.\n");
     
    15271527            printf ("    Should this NOT signal Underflow, ");
    15281528            printf ("this is a SERIOUS DEFECT\nthat causes ");
    1529             printf ("confusion when innocent statements like\n");;
     1529            printf ("confusion when innocent statements like\n");
    15301530            printf ("    if (X == Z)  ...  else");
    15311531            printf ("  ... (f(X) - f(Z)) / (X - Z) ...\n");
Note: See TracChangeset for help on using the changeset viewer.