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