瀏覽代碼

ppc4xx: Fix acadia_nand build problem

Don't include testdram() on NAND-booting target acadia_nand. This saves
a few bytes and makes the target build clean again.

Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese 17 年之前
父節點
當前提交
64cd594e62
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      board/amcc/acadia/memory.c

+ 2 - 0
board/amcc/acadia/memory.c

@@ -117,7 +117,9 @@ long int initdram(int board_type)
 	return (CFG_MBYTES_RAM << 20);
 }
 
+#ifndef CONFIG_NAND_SPL
 int testdram(void)
 {
 	return (0);
 }
+#endif