]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cpuat91: fix board support
authorEric Benard <eric@eukrea.com>
Mon, 6 Jun 2011 22:48:29 +0000 (22:48 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Tue, 21 Jun 2011 20:26:22 +0000 (22:26 +0200)
Signed-off-by: Eric BĂ©nard <eric@eukrea.com>
MAKEALL
board/eukrea/cpuat91/cpuat91.c

diff --git a/MAKEALL b/MAKEALL
index 13dde6fca651db9d2fa8e0912a37fa7556f5d28e..50c008003bc6bfaf1ed88817f13d7f80a06cc901 100755 (executable)
--- a/MAKEALL
+++ b/MAKEALL
@@ -454,7 +454,6 @@ LIST_at91="$(boards_by_soc at91)\
        at91sam9g20ek           \
        at91sam9m10g45ek        \
        at91sam9rlek            \
-       CPUAT91                 \
        pm9g45                  \
        SBC35_A9G20             \
        TNY_A9260               \
index 4c4dad655c999ddf6c0ead88a70eaaa88d19c1c1..fa4b25ba23c2d732567949d29f05bcf2bec7a01d 100644 (file)
@@ -63,7 +63,7 @@ int dram_init(void)
 #ifdef CONFIG_DRIVER_AT91EMAC
 int board_eth_init(bd_t *bis)
 {
-       return at91emac_register(bis, (u32) AT91_EMAC_BASE);
+       return at91emac_register(bis, (u32) ATMEL_BASE_EMAC);
 }
 #endif
 
@@ -71,8 +71,8 @@ int board_eth_init(bd_t *bis)
 void i2c_init_board(void)
 {
        u32 pin;
-       at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
-       at91_pio_t *pio = (at91_pio_t *) AT91_PIO_BASE;
+       at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
+       at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO;
 
        writel(1 << AT91_ID_PIOA, &pmc->pcer);
        pin = AT91_PMX_AA_TWD | AT91_PMX_AA_TWCK;