浏览代码

blackfin: Fix up board_type global data

This should be in arch_global_data but was dropped in the change-over.

Signed-off-by: Simon Glass <sjg@chromium.org>
Simon Glass 12 年之前
父节点
当前提交
4da2551efa
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1 0
      arch/blackfin/include/asm/global_data.h
  2. 1 1
      arch/blackfin/lib/board.c

+ 1 - 0
arch/blackfin/include/asm/global_data.h

@@ -32,6 +32,7 @@
 
 /* Architecture-specific global data */
 struct arch_global_data {
+	unsigned long board_type;
 };
 
 #include <asm-generic/global_data.h>

+ 1 - 1
arch/blackfin/lib/board.c

@@ -77,7 +77,7 @@ static void display_global_data(void)
 	bd = gd->bd;
 	printf(" gd: %p\n", gd);
 	printf(" |-flags: %lx\n", gd->flags);
-	printf(" |-board_type: %lx\n", gd->board_type);
+	printf(" |-board_type: %lx\n", gd->arch.board_type);
 	printf(" |-baudrate: %u\n", gd->baudrate);
 	printf(" |-have_console: %lx\n", gd->have_console);
 	printf(" |-ram_size: %lx\n", gd->ram_size);