Merge branch 'next'
[u-boot/qq2440-u-boot.git] / board / atmel / at91sam9260ek / led.c
blob56d811ca42566e8e3409c461c6dffd7ed3a568bb
1 /*
2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian@popies.net>
4 * Lead Tech Design <www.leadtechdesign.com>
6 * SPDX-License-Identifier: GPL-2.0+
7 */
9 #include <common.h>
10 #include <asm/io.h>
11 #include <asm/arch/gpio.h>
13 void coloured_LED_init(void)
15 /* Clock is enabled in board_early_init_f() */
16 at91_set_gpio_output(CONFIG_RED_LED, 1);
17 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
19 at91_set_gpio_value(CONFIG_RED_LED, 0);
20 at91_set_gpio_value(CONFIG_GREEN_LED, 1);