Hoan Hoang | 0f52b56 | 2009-01-18 22:44:17 -0500 | [diff] [blame] | 1 | /* |
| 2 | * U-boot - main board file |
| 3 | * |
| 4 | * Copyright (c) 2008-2009 I-SYST. |
| 5 | * |
| 6 | * Licensed under the GPL-2 or later. |
| 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Hoan Hoang | 5cbbabc | 2010-05-10 15:38:55 -0400 | [diff] [blame] | 10 | #include <netdev.h> |
Hoan Hoang | 0f52b56 | 2009-01-18 22:44:17 -0500 | [diff] [blame] | 11 | |
| 12 | DECLARE_GLOBAL_DATA_PTR; |
| 13 | |
| 14 | int 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 Hoang | 5cbbabc | 2010-05-10 15:38:55 -0400 | [diff] [blame] | 20 | |
| 21 | #ifdef CONFIG_DRIVER_AX88180 |
| 22 | int board_eth_init(bd_t *bis) |
| 23 | { |
| 24 | return ax88180_initialize(bis); |
| 25 | } |
| 26 | #endif |