diff options
| author | Eric Benard <eric@eukrea.com> | 2009-10-12 10:08:20 +0200 | 
|---|---|---|
| committer | Tom Rix <Tom.Rix@windriver.com> | 2009-10-18 16:38:16 -0500 | 
| commit | 94d50c527a3cedb6a41fbe6773256cdd1855317f (patch) | |
| tree | 2b5a4bd1bce745b7b1460d5b188ef6e1ffc9d0e9 | |
| parent | 3d1988ab47cc0e265272967e07d747ec600a44c9 (diff) | |
| download | olio-uboot-2014.01-94d50c527a3cedb6a41fbe6773256cdd1855317f.tar.xz olio-uboot-2014.01-94d50c527a3cedb6a41fbe6773256cdd1855317f.zip | |
AT91 CPU9260 Fix machine ID when using a CPU9G20.
Signed-off-by: Eric Benard <eric@eukrea.com>
Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
| -rw-r--r-- | board/eukrea/cpu9260/cpu9260.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/eukrea/cpu9260/cpu9260.c b/board/eukrea/cpu9260/cpu9260.c index 0b4f0d450..af8a4a2f8 100644 --- a/board/eukrea/cpu9260/cpu9260.c +++ b/board/eukrea/cpu9260/cpu9260.c @@ -165,7 +165,7 @@ int board_init(void)  	/* arch number of the board */  #if defined(CONFIG_CPU9G20) -	gd->bd->bi_arch_number = MACH_TYPE_CPUAT9260; +	gd->bd->bi_arch_number = MACH_TYPE_CPUAT9G20;  #elif defined(CONFIG_CPU9260)  	gd->bd->bi_arch_number = MACH_TYPE_CPUAT9260;  #endif |