diff options
| -rw-r--r-- | board/st-ericsson/snowball/snowball.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/board/st-ericsson/snowball/snowball.c b/board/st-ericsson/snowball/snowball.c index 8c743c0ad..e750df189 100644 --- a/board/st-ericsson/snowball/snowball.c +++ b/board/st-ericsson/snowball/snowball.c @@ -253,6 +253,10 @@ int board_late_init(void)  	if ((raise_ab8500_gpio16() < 0))  		printf("error: cant' raise GPIO16\n"); +	/* empty UART RX FIFO */ +	while (tstc()) +		(void) getc(); +  	return 0;  } |