Changeset 7a415db in rtems


Ignore:
Timestamp:
10/26/11 03:08:40 (12 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.11, 5, master
Children:
8c30ecd
Parents:
c4639963
Message:

2011-10-26 Ralf Corsépius <ralf.corsepius@…>

  • shared/can/occan.c: Comment out unused var "tmp".
Location:
c/src/lib/libbsp/sparc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sparc/ChangeLog

    rc4639963 r7a415db  
     12011-10-26      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * shared/can/occan.c: Comment out unused var "tmp".
     4
    152011-10-07      Daniel Hellstrom <daniel@gaisler.com>
    26
  • c/src/lib/libbsp/sparc/shared/can/occan.c

    rc4639963 r7a415db  
    400400
    401401static void pelican_open(occan_priv *priv){
    402         unsigned char tmp;
     402        /* unsigned char tmp; */
    403403        int ret;
    404404
     
    431431
    432432        /* clear pending interrupts by reading */
    433         tmp = READ_REG(&priv->regs->intflags);
     433        /* tmp = */ READ_REG(&priv->regs->intflags);
    434434}
    435435
    436436static int pelican_start(occan_priv *priv){
    437         unsigned char tmp;
     437        /* unsigned char tmp; */
    438438        /* Start HW communication */
    439439
     
    451451
    452452        /* clear pending interrupts */
    453         tmp = READ_REG(&priv->regs->intflags);
     453        /* tmp = */ READ_REG(&priv->regs->intflags);
    454454
    455455        /* clear error counters */
Note: See TracChangeset for help on using the changeset viewer.