]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/bf537-minotaur/bf537-minotaur.c
mx6sxsabreauto: Remove legacy CONFIG_PCA953X
[people/ms/u-boot.git] / board / bf537-minotaur / bf537-minotaur.c
CommitLineData
d7fdc141 1/*
a187559e 2 * U-Boot - main board file
d7fdc141
MF
3 *
4 * Copyright (c) 2005-2009 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
10#include <config.h>
11#include <command.h>
12#include <netdev.h>
13#include <net.h>
14#include <asm/blackfin.h>
d7fdc141
MF
15
16DECLARE_GLOBAL_DATA_PTR;
17
18int checkboard(void)
19{
20 printf("Board: CSP BF537 Minotaur board\n");
21 printf(" Support: http://www.camsig.co.uk/\n");
22 return 0;
23}
24
d7fdc141 25#ifdef CONFIG_BFIN_MAC
d7fdc141
MF
26int board_eth_init(bd_t *bis)
27{
28 return bfin_EMAC_initialize(bis);
29}
30#endif