mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
fa45bd498a
While the initdram() function makes sense on some arches, it doesn't for Blackfin systems as it's always implemented the same way. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18 lines
302 B
C
18 lines
302 B
C
/*
|
|
* U-boot - main board file
|
|
*
|
|
* Copyright (c) 2008-2009 I-SYST.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
int checkboard(void)
|
|
{
|
|
printf("Board: I-SYST IBF-DSP561 Micromodule\n");
|
|
printf(" Support: http://www.i-syst.com/\n");
|
|
return 0;
|
|
}
|