]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/board_early_init_f.c
ARM: UniPhier: include <mach/*.h> instead of <asm/arch/*.h>
[people/ms/u-boot.git] / arch / arm / mach-uniphier / board_early_init_f.c
CommitLineData
84ccd791
MY
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
a86ac954
MY
8#include <mach/led.h>
9#include <mach/board.h>
84ccd791
MY
10
11void pin_init(void);
12
13int 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}