blob: 6f3f170a32501f9dcee283e6c6fa11f66b1a6cd4 [file] [log] [blame]
Dimitar Penev051a5f32011-11-25 16:05:54 -05001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * U-Boot - main board file
Dimitar Penev051a5f32011-11-25 16:05:54 -05003 *
4 * Copyright (c) Switchfin Org. <dpn@switchfin.org>
5 *
6 * Copyright (c) 2005-2008 Analog Devices Inc.
7 *
8 * (C) Copyright 2000-2004
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
10 *
11 * Licensed under the GPL-2 or later.
12 */
13
14#include <common.h>
15#include <net.h>
16#include <netdev.h>
17
18int checkboard(void)
19{
20 printf("Board: Switchvoice BR4 Appliance\n");
21 printf(" Support: http://www.switchvoice.com/\n");
22 return 0;
23}
24
25#ifdef CONFIG_BFIN_MAC
26int board_eth_init(bd_t *bis)
27{
28 return bfin_EMAC_initialize(bis);
29}
30#endif