]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/cpu/armv7/uniphier/dram_init.c
Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
[thirdparty/u-boot.git] / arch / arm / cpu / armv7 / uniphier / dram_init.c
1 /*
2 * Copyright (C) 2012-2015 Panasonic Corporation
3 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #include <common.h>
9
10 int dram_init(void)
11 {
12 DECLARE_GLOBAL_DATA_PTR;
13 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
14
15 return 0;
16 }