Coding style cleanup, update CHANGELOG.

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk 2010-05-26 23:51:22 +02:00
parent 45b728cdee
commit c4976807cb
3 changed files with 4057 additions and 13 deletions

4045
CHANGELOG

File diff suppressed because it is too large Load Diff

View File

@ -117,7 +117,4 @@ enum {
X86_SUBARCH_MRST, X86_SUBARCH_MRST,
X86_NR_SUBARCHS, X86_NR_SUBARCHS,
}; };
#endif /* _ASM_X86_BOOTPARAM_H */ #endif /* _ASM_X86_BOOTPARAM_H */

View File

@ -115,11 +115,13 @@ int serial_init (void)
writel(action, &uart->action); writel(action, &uart->action);
/* control register cleanup */ /*
/* no interrupts enabled */ * control register cleanup
/* one stop bit */ * no interrupts enabled
/* hardware flow control disabled */ * one stop bit
/* 8 bits */ * hardware flow control disabled
* 8 bits
*/
control = (0x7 << YANU_CONTROL_BITS_POS); control = (0x7 << YANU_CONTROL_BITS_POS);
/* enven parity just to be clean */ /* enven parity just to be clean */
control |= YANU_CONTROL_PAREVEN; control |= YANU_CONTROL_PAREVEN;