blob: a863195057d121aeeeb6d874bb4dff11ad4ed4e3 [file] [log] [blame]
Mike Frysingere82d8a12008-10-12 21:36:22 -04001/*
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>
Ben Warren7194ab82009-10-04 22:37:03 -070010#include <netdev.h>
Mike Frysingere82d8a12008-10-12 21:36:22 -040011
12DECLARE_GLOBAL_DATA_PTR;
13
14int checkboard(void)
15{
16 printf("Board: Bluetechnix CM-BF533 board\n");
17 printf(" Support: http://www.bluetechnix.at/\n");
18 return 0;
19}
20
Ben Warren7194ab82009-10-04 22:37:03 -070021#ifdef CONFIG_SMC91111
22int board_eth_init(bd_t *bis)
23{
24 return smc91111_initialize(0, CONFIG_SMC91111_BASE);
25}
26#endif