lib/stm32/*.c: Coding-style fixes.

This commit is contained in:
Uwe Hermann
2011-11-16 19:13:21 +01:00
parent bb8741a79b
commit 6e7403f769
3 changed files with 4 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ void usart_set_baudrate(u32 usart, u32 baud, u32 clock)
* simple divider to generate the correct baudrate. >_< If I
* am wrong feel free to correct me on that. :) (esden)
*/
USART_BRR(usart) = clock/baud;
USART_BRR(usart) = clock / baud;
}
void usart_set_databits(u32 usart, u32 bits)