]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/ip04/ip04.c
ARM: davinci: remove support for cam_enc_4xx
[karo-tx-uboot.git] / board / ip04 / ip04.c
1 /*
2  * U-boot - main board file
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>
16
17 int 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
25 int board_eth_init(bd_t *bis)
26 {
27         return dm9000_initialize(bis);
28 }
29 #endif