From: Matthias Fuchs Date: Wed, 3 Sep 2008 15:15:45 +0000 (+0200) Subject: ppx4xx: Fix broken DASA_SIM board X-Git-Tag: v2008.10-rc1~61^2~1^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405;p=oweals%2Fu-boot.git ppx4xx: Fix broken DASA_SIM board This patch adds initdram() to DASA_SIM boards that has been removed accidentally by a previous commit. Signed-off-by: Matthias Fuchs Signed-off-by: Stefan Roese --- diff --git a/board/esd/dasa_sim/dasa_sim.c b/board/esd/dasa_sim/dasa_sim.c index def035414b..4cc3a2f45d 100644 --- a/board/esd/dasa_sim/dasa_sim.c +++ b/board/esd/dasa_sim/dasa_sim.c @@ -202,3 +202,8 @@ int checkboard (void) return 0; } + +phys_size_t initdram (int board_type) +{ + return (16 * 1024 * 1024); +}