1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2020 Google LLC
4  */
5 
6 #include <common.h>
7 #include <init.h>
8 
dram_init(void)9 int dram_init(void)
10 {
11 	return 0;
12 }
13