common: Drop net.h from common header
[u-boot.git] / board / renesas / MigoR / migo_r.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
c2042f59 2/*
3 * Copyright (C) 2007
4 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5 *
6 * Copyright (C) 2007
7 * Kenati Technologies, Inc.
8 *
9 * board/MigoR/migo_r.c
c2042f59 10 */
11
12#include <common.h>
90526e9f 13#include <net.h>
7194ab80 14#include <netdev.h>
c2042f59 15#include <asm/io.h>
16#include <asm/processor.h>
17
18int checkboard(void)
19{
20 puts("BOARD: Renesas MigoR\n");
21 return 0;
22}
23
24int board_init(void)
25{
26 return 0;
27}
28
c2042f59 29void led_set_state (unsigned short value)
30{
31}
7194ab80
BW
32
33#ifdef CONFIG_CMD_NET
34int board_eth_init(bd_t *bis)
35{
36 int rc = 0;
37#ifdef CONFIG_SMC91111
38 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
39#endif
40 return rc;
41}
42#endif
This page took 0.374661 seconds and 4 git commands to generate.