Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame^] | 1 | /* |
2 | * Copyright (C) 2016 BayLibre, SAS | ||||
3 | * Author: Neil Armstrong <narmstrong@baylibre.com> | ||||
4 | * | ||||
5 | * SPDX-License-Identifier: GPL-2.0+ | ||||
6 | */ | ||||
7 | |||||
8 | #include <common.h> | ||||
9 | #include <dm.h> | ||||
10 | #include <asm/io.h> | ||||
11 | #include <asm/arch/gxbb.h> | ||||
12 | |||||
13 | int board_init(void) | ||||
14 | { | ||||
15 | return 0; | ||||
16 | } | ||||
17 | |||||
18 | int misc_init_r(void) | ||||
19 | { | ||||
20 | return 0; | ||||
21 | } |