Ticket #1944: pr1944.diff

File pr1944.diff, 1.4 KB (added by Joel Sherrill, on 10/28/11 at 12:59:15)

Remove if 0

  • ChangeLog

    RCS file: /usr1/CVS/rtems/c/src/ChangeLog,v
    retrieving revision 1.569
    retrieving revision 1.570
    diff -u -r1.569 -r1.570
     
     12011-10-28      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        PR 1944/misc
     4        * libchip/serial/mc68681.c: Remove #if 0.
     5
    162011-10-26      Ralf Corsépius <ralf.corsepius@rtems.org>
    27
    38        * libchip/serial/ns16550.c (ns16550_init):
  • libchip/serial/mc68681.c

    RCS file: /usr1/CVS/rtems/c/src/libchip/serial/mc68681.c,v
    retrieving revision 1.41
    retrieving revision 1.42
    diff -u -r1.41 -r1.42
     
    1313 *  found in the file LICENSE in this distribution or at
    1414 *  http://www.rtems.com/license/LICENSE.
    1515 *
    16  *  $Id: mc68681.c,v 1.41 2011/10/18 18:40:27 jennifer Exp $
     16 *  $Id: mc68681.c,v 1.42 2011/10/28 13:58:22 joel Exp $
    1717 */
    1818
    1919#include <rtems.h>
     
    339339  /*
    340340   *  Disable interrupts from this channel and then disable it totally.
    341341   */
    342 
    343 #if 0
    344342  (*setReg)( pMC68681_port, MC68681_COMMAND, MC68681_MODE_REG_DISABLE_TX );
    345343  (*setReg)( pMC68681_port, MC68681_COMMAND, MC68681_MODE_REG_DISABLE_RX );
    346 #endif
    347344
    348345  return(RTEMS_SUCCESSFUL);
    349346}