mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Fix compiler problem with at91rm9200dk board.
Patch by Eugen Bigz, 19 Dec 2005
This commit is contained in:
parent
e6b6d16de7
commit
27e166b875
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
======================================================================
|
||||
Changes since U-Boot 1.1.4:
|
||||
======================================================================
|
||||
|
||||
* Fix compiler problem with at91rm9200dk board.
|
||||
Patch by Eugen Bigz, 19 Dec 2005
|
||||
|
||||
======================================================================
|
||||
Changes for U-Boot 1.1.4:
|
||||
======================================================================
|
||||
|
|
|
@ -41,7 +41,7 @@ int board_init (void)
|
|||
|
||||
/* Correct IRDA resistor problem */
|
||||
/* Set PA23_TXD in Output */
|
||||
(AT91PS_PIO) AT91C_BASE_PIOA->PIO_OER = AT91C_PA23_TXD2;
|
||||
((AT91PS_PIO) AT91C_BASE_PIOA)->PIO_OER = AT91C_PA23_TXD2;
|
||||
|
||||
/* memory and cpu-speed are setup before relocation */
|
||||
/* so we do _nothing_ here */
|
||||
|
|
Loading…
Reference in a new issue