diff options
author | Tom Rini <trini@konsulko.com> | 2015-03-01 21:07:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-03-01 21:07:53 -0500 |
commit | 1da7ce4155d0839d9d56525379493bb0f80b5330 (patch) | |
tree | a29a93170e68b30d1a5b73a8210ddb92b5aaa3c7 /arch/arm/mach-uniphier/board_early_init_r.c | |
parent | fc834100950ab630f442aece500d8c9ccfa2b992 (diff) | |
parent | 105a9e705efaeeac63e795e2a184b0a18db0ac5a (diff) | |
download | u-boot-imx-1da7ce4155d0839d9d56525379493bb0f80b5330.zip u-boot-imx-1da7ce4155d0839d9d56525379493bb0f80b5330.tar.gz u-boot-imx-1da7ce4155d0839d9d56525379493bb0f80b5330.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-uniphier
Diffstat (limited to 'arch/arm/mach-uniphier/board_early_init_r.c')
-rw-r--r-- | arch/arm/mach-uniphier/board_early_init_r.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/mach-uniphier/board_early_init_r.c b/arch/arm/mach-uniphier/board_early_init_r.c new file mode 100644 index 0000000..579fe70 --- /dev/null +++ b/arch/arm/mach-uniphier/board_early_init_r.c @@ -0,0 +1,15 @@ +/* + * Copyright (C) 2014 Panasonic Corporation + * Author: Masahiro Yamada <yamada.m@jp.panasonic.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> +#include <mach/board.h> + +int board_early_init_r(void) +{ + uniphier_board_late_init(); + return 0; +} |