]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
tegra: Move checkboard() into the board code
authorSimon Glass <sjg@chromium.org>
Wed, 15 Apr 2015 03:03:24 +0000 (21:03 -0600)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 20:39:33 +0000 (22:39 +0200)
This is only used by Nvidia boards, so move it into nvidia/common to
simplify things.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/mach-tegra/board.c
board/nvidia/common/board.c

index 0ebaf1932556f58d102277fec54f694390bcacd0..222de6a7352d4420bcf38f5cdeb8cbef406cb66d 100644 (file)
@@ -98,14 +98,6 @@ int dram_init(void)
        return 0;
 }
 
-#ifdef CONFIG_DISPLAY_BOARDINFO
-int checkboard(void)
-{
-       printf("Board: %s\n", sysinfo.board_string);
-       return 0;
-}
-#endif /* CONFIG_DISPLAY_BOARDINFO */
-
 static int uart_configs[] = {
 #if defined(CONFIG_TEGRA20)
  #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
index 018dddba15584f082758f5567b90b7421d09c025..f1a9496c04199a9843e43174e04db00482cb6ce2 100644 (file)
@@ -53,10 +53,6 @@ U_BOOT_DEVICE(tegra_gpios) = {
 };
 #endif
 
-const struct tegra_sysinfo sysinfo = {
-       CONFIG_TEGRA_BOARD_STRING
-};
-
 __weak void pinmux_init(void) {}
 __weak void pin_mux_usb(void) {}
 __weak void pin_mux_spi(void) {}
@@ -85,6 +81,15 @@ static void power_det_init(void)
 #endif
 }
 
+#ifdef CONFIG_DISPLAY_BOARDINFO
+int checkboard(void)
+{
+       printf("Board: %s\n", CONFIG_TEGRA_BOARD_STRING);
+
+       return 0;
+}
+#endif /* CONFIG_DISPLAY_BOARDINFO */
+
 /*
  * Routine: board_init
  * Description: Early hardware init.