Changeset 2fafea2 in rtems


Ignore:
Timestamp:
11/18/08 11:28:04 (15 years ago)
Author:
Thomas Doerfler <Thomas.Doerfler@…>
Branches:
4.9
Children:
d65b2da
Parents:
906dd57
Message:

console/console.c: Update for new NS16550 polled write function.

Location:
c/src/lib/libbsp/powerpc/gen83xx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/gen83xx/ChangeLog

    r906dd57 r2fafea2  
     12008-11-13      Sebastian Huber <sebastian.huber@embedded-brains.de>
     2
     3        * console/console.c: Update for new NS16550 polled write function.
     4
    152008-09-24      Joel Sherrill <joel.sherrill@OARcorp.com>
    26
  • c/src/lib/libbsp/powerpc/gen83xx/console/console.c

    r906dd57 r2fafea2  
    255255void debug_putc_onlcr(const char c)
    256256{
    257   uint32_t Irql;
    258257  if (Console_Is_Initialized) {
    259     rtems_interrupt_disable(Irql);
    260    
    261258    Console_Port_Tbl[Console_Port_Minor].pDeviceFns->
    262259      deviceWritePolled(Console_Port_Minor,c);
     
    266263        deviceWritePolled(Console_Port_Minor,'\r');
    267264    }
    268    
    269     rtems_interrupt_enable(Irql);
    270265  }
    271266}
Note: See TracChangeset for help on using the changeset viewer.