~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/cm-bf561/cm-bf561.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * U-boot - main board file
 
3
 *
 
4
 * Copyright (c) 2005-2008 Analog Devices Inc.
 
5
 *
 
6
 * Licensed under the GPL-2 or later.
 
7
 */
 
8
 
 
9
#include <common.h>
 
10
#include <netdev.h>
 
11
 
 
12
DECLARE_GLOBAL_DATA_PTR;
 
13
 
 
14
int checkboard(void)
 
15
{
 
16
        printf("Board: Bluetechnix CM-BF561 core module\n");
 
17
        printf("       Support: http://www.bluetechnix.at/\n");
 
18
        return 0;
 
19
}
 
20
 
 
21
#ifdef CONFIG_SMC911X
 
22
int board_eth_init(bd_t *bis)
 
23
{
 
24
        return smc911x_initialize(0, CONFIG_SMC911X_BASE);
 
25
}
 
26
#endif