diff options
Diffstat (limited to 'board/inka4x0/inka4x0.c')
| -rw-r--r-- | board/inka4x0/inka4x0.c | 20 | 
1 files changed, 18 insertions, 2 deletions
| diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c index 507196bb2..bb5c25d3b 100644 --- a/board/inka4x0/inka4x0.c +++ b/board/inka4x0/inka4x0.c @@ -1,6 +1,9 @@  /* - * (C) Copyright 2003-2004 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + * (C) Copyright 2008-2009 + * Andreas Pfefferle, DENX Software Engineering, ap@denx.de. + * + * (C) Copyright 2009 + * Detlev Zundel, DENX Software Engineering, dzu@denx.de.   *   * (C) Copyright 2004   * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com. @@ -8,6 +11,9 @@   * (C) Copyright 2004   * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de   * + * (C) Copyright 2003-2004 + * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + *   * See file CREDITS for list of people who contributed to this   * project.   * @@ -171,6 +177,16 @@ void flash_preinit(void)  	*(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */  } +int misc_init_r (void) { +	extern int inkadiag_init_r (void); + +	/* +	 * The command table used for the subcommands of inkadiag +	 * needs to be relocated manually. +	 */ +	return inkadiag_init_r(); +} +  int misc_init_f (void)  {  	char tmp[10]; |