spi: zynqmp_gqspi: fix set_speed bug on multiple runs
[platform/kernel/u-boot.git] / board / renesas / MigoR / migo_r.c
1 // SPDX-License-Identifier: GPL-2.0+
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
10  */
11
12 #include <common.h>
13 #include <init.h>
14 #include <net.h>
15 #include <netdev.h>
16 #include <asm/io.h>
17 #include <asm/processor.h>
18
19 int checkboard(void)
20 {
21         puts("BOARD: Renesas MigoR\n");
22         return 0;
23 }
24
25 int board_init(void)
26 {
27         return 0;
28 }
29
30 void led_set_state (unsigned short value)
31 {
32 }
33
34 #ifdef CONFIG_CMD_NET
35 int board_eth_init(struct bd_info *bis)
36 {
37         int rc = 0;
38 #ifdef CONFIG_SMC91111
39         rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
40 #endif
41         return rc;
42 }
43 #endif