Merge branch 'next'
[u-boot/qq2440-u-boot.git] / board / br4 / br4.c
blobbc034e38d4a09ca766ccbec7f6aa5a41a4cc72a5
1 /*
2 * U-boot - main board file
4 * Copyright (c) Switchfin Org. <dpn@switchfin.org>
6 * Copyright (c) 2005-2008 Analog Devices Inc.
8 * (C) Copyright 2000-2004
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
11 * Licensed under the GPL-2 or later.
14 #include <common.h>
15 #include <net.h>
16 #include <netdev.h>
18 int checkboard(void)
20 printf("Board: Switchvoice BR4 Appliance\n");
21 printf(" Support: http://www.switchvoice.com/\n");
22 return 0;
25 #ifdef CONFIG_BFIN_MAC
26 int board_eth_init(bd_t *bis)
28 return bfin_EMAC_initialize(bis);
30 #endif