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