xref: /openbmc/u-boot/board/sifive/fu540/fu540.c (revision 223bb744)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2019 Western Digital Corporation or its affiliates.
4  *
5  * Authors:
6  *   Anup Patel <anup.patel@wdc.com>
7  */
8 
9 #include <common.h>
10 #include <dm.h>
11 
12 int board_init(void)
13 {
14 	/* For now nothing to do here. */
15 
16 	return 0;
17 }
18