]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/cm-bf561/cm-bf561.c
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[people/ms/u-boot.git] / board / cm-bf561 / cm-bf561.c
CommitLineData
e548321a
MF
1/*
2 * U-boot - main board file
3 *
4 * Copyright (c) 2005-2008 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
7194ab80 10#include <netdev.h>
e548321a
MF
11
12DECLARE_GLOBAL_DATA_PTR;
13
14int checkboard(void)
15{
16 printf("Board: Bluetechnix CM-BF561 core module\n");
17 printf(" Support: http://www.bluetechnix.at/\n");
18 return 0;
19}
20
6a0be8f8 21#ifdef CONFIG_SMC911X
7194ab80
BW
22int board_eth_init(bd_t *bis)
23{
6a0be8f8 24 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
7194ab80
BW
25}
26#endif