blob: 8475fda1a47b13fb377d406a6311d5e75ea57c37 [file] [log] [blame]
Hoan Hoang0f52b562009-01-18 22:44:17 -05001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * U-Boot - main board file
Hoan Hoang0f52b562009-01-18 22:44:17 -05003 *
4 * Copyright (c) 2008-2009 I-SYST.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
Hoan Hoang5cbbabc2010-05-10 15:38:55 -040010#include <netdev.h>
Hoan Hoang0f52b562009-01-18 22:44:17 -050011
12DECLARE_GLOBAL_DATA_PTR;
13
14int checkboard(void)
15{
16 printf("Board: I-SYST IBF-DSP561 Micromodule\n");
17 printf(" Support: http://www.i-syst.com/\n");
18 return 0;
19}
Hoan Hoang5cbbabc2010-05-10 15:38:55 -040020
21#ifdef CONFIG_DRIVER_AX88180
22int board_eth_init(bd_t *bis)
23{
24 return ax88180_initialize(bis);
25}
26#endif