blob: f69456e43a27bd3cae6eaf8303131b3a061dcafc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2019 Google LLC
* Written by Simon Glass <sjg@chromium.org>
*/
#include <common.h>
#include <init.h>
int arch_fsp_init(void)
{
return 0;
}
|