]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-uniphier/board_early_init_f.c
d25bbaec0871ace7bf2feb87fb1ec1fe57eb11c0
[people/ms/u-boot.git] / arch / arm / mach-uniphier / board_early_init_f.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 <asm/arch/led.h>
9 #include <asm/arch/board.h>
10
11 void pin_init(void);
12
13 int board_early_init_f(void)
14 {
15 led_write(U, 0, , );
16
17 pin_init();
18
19 led_write(U, 1, , );
20
21 return 0;
22 }