
Pull in a few more standard includes and drop the CPU banner line as the common Blackfin code already handles this for us.
Signed-off-by: Mike Frysinger vapier@gentoo.org --- board/bf561-ezkit/bf561-ezkit.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/board/bf561-ezkit/bf561-ezkit.c b/board/bf561-ezkit/bf561-ezkit.c index d504217..0358c45 100644 --- a/board/bf561-ezkit/bf561-ezkit.c +++ b/board/bf561-ezkit/bf561-ezkit.c @@ -2,7 +2,7 @@ * U-boot - ezkit561.c * * Copyright (c) 2005 Bas Vermeulen bas@buyways.nl - * Copyright (c) 2005-2007 Analog Devices Inc. + * Copyright (c) 2005-2008 Analog Devices Inc. * * (C) Copyright 2000-2004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -27,13 +27,15 @@ */
#include <common.h> +#include <config.h> +#include <command.h> +#include <asm/blackfin.h> #include <asm/io.h>
DECLARE_GLOBAL_DATA_PTR;
int checkboard(void) { - printf("CPU: ADSP BF561\n"); printf("Board: ADI BF561 EZ-Kit Lite board\n"); printf(" Support: http://blackfin.uclinux.org/%5Cn"); return 0;