diff options
| author | Stelian Pop <stelian@popies.net> | 2008-11-07 12:09:21 +0100 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-11-07 12:09:21 +0100 | 
| commit | c91e17affa175ce06afa89b04752301eb4a61666 (patch) | |
| tree | 4f2d3e85b6494c53bd5da48f69bcce08f1f04075 /board/atmel/at91sam9263ek/at91sam9263ek.c | |
| parent | 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2 (diff) | |
| download | olio-uboot-2014.01-c91e17affa175ce06afa89b04752301eb4a61666.tar.xz olio-uboot-2014.01-c91e17affa175ce06afa89b04752301eb4a61666.zip | |
AT91: Replace (undefined) AT91_ID_US* by the board specific values.
AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
Since they are never used outside the board specific files, they can
be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
AT91xxx_ID_US2.
Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/atmel/at91sam9263ek/at91sam9263ek.c')
| -rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 63f95e718..a1f39294e 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -51,19 +51,19 @@ static void at91sam9263ek_serial_hw_init(void)  #ifdef CONFIG_USART0  	at91_set_A_periph(AT91_PIN_PA26, 1);		/* TXD0 */  	at91_set_A_periph(AT91_PIN_PA27, 0);		/* RXD0 */ -	at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US0); +	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US0);  #endif  #ifdef CONFIG_USART1  	at91_set_A_periph(AT91_PIN_PD0, 1);		/* TXD1 */  	at91_set_A_periph(AT91_PIN_PD1, 0);		/* RXD1 */ -	at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US1); +	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US1);  #endif  #ifdef CONFIG_USART2  	at91_set_A_periph(AT91_PIN_PD2, 1);		/* TXD2 */  	at91_set_A_periph(AT91_PIN_PD3, 0);		/* RXD2 */ -	at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US2); +	at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US2);  #endif  #ifdef CONFIG_USART3	/* DBGU */ |