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