]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-uniphier/board_early_init_f.c
ARM: UniPhier: include <mach/*.h> instead of <asm/arch/*.h>
[karo-tx-uboot.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 <mach/led.h>
9 #include <mach/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 }