mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 13:44:29 +08:00
odroid: Turn blue LED on
To indicate that U-Boot is active, turn on the blue LED. Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
f2cca34245
commit
df96337a53
@ -383,6 +383,11 @@ static void board_gpio_init(void)
|
||||
gpio_set_drv(EXYNOS4X12_GPIO_X31, S5P_GPIO_DRV_4X);
|
||||
gpio_direction_input(EXYNOS4X12_GPIO_X31);
|
||||
|
||||
/* Blue LED (Odroid X2/U2/U3) */
|
||||
gpio_request(EXYNOS4X12_GPIO_C10, "Blue LED");
|
||||
|
||||
gpio_direction_output(EXYNOS4X12_GPIO_C10, 0);
|
||||
|
||||
#ifdef CONFIG_CMD_USB
|
||||
/* USB3503A Reference frequency */
|
||||
gpio_request(EXYNOS4X12_GPIO_X30, "USB3503A RefFreq");
|
||||
|
Loading…
Reference in New Issue
Block a user