~ubuntu-branches/ubuntu/saucy/u-boot/saucy

« back to all changes in this revision

Viewing changes to board/pr1/pr1.c

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2012-05-01 18:07:19 UTC
  • mfrom: (16.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20120501180719-rjntk3287im4a0ns
Tags: 2012.04.01-1
* New upstream version.
  - Update mipsel-native-endianness.diff.
  - Update no-error-on-set-but-unused-variables.diff (partially merged).
  - Drop kirkwood_spi-irq_mask.diff (merged).
  - Drop kirkwood-disable-l2c.diff (merged).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * U-boot - main board file
 
3
 *
 
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
 
 
18
int checkboard(void)
 
19
{
 
20
        printf("Board: Switchvoice PR1 Appliance\n");
 
21
        printf("       Support: http://www.switchvoice.com/\n");
 
22
        return 0;
 
23
}
 
24
 
 
25
#ifdef CONFIG_BFIN_MAC
 
26
int board_eth_init(bd_t *bis)
 
27
{
 
28
        return bfin_EMAC_initialize(bis);
 
29
}
 
30
#endif