Simon Glass | 8fbf992 | 2019-01-21 14:53:36 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * Copyright 2018 Google | ||||
4 | */ | ||||
5 | |||||
6 | #include <common.h> | ||||
7 | |||||
8 | int board_init(void) | ||||
9 | { | ||||
10 | return 0; | ||||
11 | } | ||||
12 | |||||
13 | /* provided to defeat compiler optimisation in board_init_f() */ | ||||
14 | void gru_dummy_function(int i) | ||||
15 | { | ||||
16 | } |