1
0
Fork 0
forked from len0rd/rockbox

Fix a small typo

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16353 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Will Robertson 2008-02-19 14:30:29 +00:00
parent bc4621499a
commit 1a39029c68

View file

@ -174,7 +174,7 @@ void serial_setup (void)
void serial_setup(void)
{
#ifdef UART_INT /*enable UART Interrupts */
UCR1_1 |= (EUARTUCR1_TRDYEN | EUaRTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
UCR1_1 |= (EUARTUCR1_TRDYEN | EUARTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);
UCR4_1 |= (EUARTUCR4_TCEN);
#else /*disable UART Interrupts*/
UCR1_1 &= ~(EUARTUCR1_TRDYEN | EUARTUCR1_RRDYEN | EUARTUCR1_TXMPTYEN);