]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ip04/ip04.c
mx6sxsabreauto: Remove legacy CONFIG_PCA953X
[people/ms/u-boot.git] / board / ip04 / ip04.c
CommitLineData
3f1a5c16 1/*
a187559e 2 * U-Boot - main board file
3f1a5c16
BK
3 *
4 * Copyright (c) 2007 David Rowe,
5 * (c) 2006 Ivan Danov
6 *
7 * (C) Copyright 2000-2004
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 *
10 * Licensed under the GPL-2 or later.
11 */
12
13#include <common.h>
14#include <net.h>
15#include <netdev.h>
3f1a5c16
BK
16
17int checkboard(void)
18{
19 printf("Board: IP04 IP-PBX\n");
20 printf(" http://www.rowetel.com/ucasterisk/ip04.html\n");
21 return 0;
22}
23
24#ifdef CONFIG_DRIVER_DM9000
25int board_eth_init(bd_t *bis)
26{
27 return dm9000_initialize(bis);
28}
3f1a5c16 29#endif