]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/mach-uniphier/board_common.c
cosmetic: Fix typos "privide"
[u-boot] / arch / arm / mach-uniphier / board_common.c
index 5f2d5f6f5b9cdb2b3dc3e76ce55e2ecc69c0704f..020ffcae1d5af52d03f845e6d9b4401718e28eab 100644 (file)
@@ -1,32 +1,16 @@
 /*
- * Copyright (C) 2012-2014 Panasonic Corporation
- *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
+ * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  *
  * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
-#include <mach/led.h>
 
-/*
- * Routine: board_init
- * Description: Early hardware init.
- */
+#include "micro-support-card.h"
+
 int board_init(void)
 {
-       led_write(U, B, O, O);
+       led_puts("Uboo");
 
        return 0;
 }
-
-#if CONFIG_NR_DRAM_BANKS >= 2
-void dram_init_banksize(void)
-{
-       DECLARE_GLOBAL_DATA_PTR;
-
-       gd->bd->bi_dram[0].start = CONFIG_SDRAM0_BASE;
-       gd->bd->bi_dram[0].size  = CONFIG_SDRAM0_SIZE;
-       gd->bd->bi_dram[1].start = CONFIG_SDRAM1_BASE;
-       gd->bd->bi_dram[1].size  = CONFIG_SDRAM1_SIZE;
-}
-#endif