diff options
Diffstat (limited to 'arch/arm/cpu/arm926ejs/at91/led.c')
| -rw-r--r-- | arch/arm/cpu/arm926ejs/at91/led.c | 16 | 
1 files changed, 7 insertions, 9 deletions
| diff --git a/arch/arm/cpu/arm926ejs/at91/led.c b/arch/arm/cpu/arm926ejs/at91/led.c index 5dd90487e..46ed05502 100644 --- a/arch/arm/cpu/arm926ejs/at91/led.c +++ b/arch/arm/cpu/arm926ejs/at91/led.c @@ -7,43 +7,41 @@   */  #include <common.h> -#include <asm/io.h> -#include <asm/arch/at91_pmc.h> -#include <asm/arch/at91_pio.h> +#include <asm/gpio.h>  #include <asm/arch/gpio.h>  #ifdef CONFIG_RED_LED  void red_led_on(void)  { -	at91_set_gpio_value(CONFIG_RED_LED, 1); +	gpio_set_value(CONFIG_RED_LED, 1);  }  void red_led_off(void)  { -	at91_set_gpio_value(CONFIG_RED_LED, 0); +	gpio_set_value(CONFIG_RED_LED, 0);  }  #endif  #ifdef CONFIG_GREEN_LED  void green_led_on(void)  { -	at91_set_gpio_value(CONFIG_GREEN_LED, 0); +	gpio_set_value(CONFIG_GREEN_LED, 0);  }  void green_led_off(void)  { -	at91_set_gpio_value(CONFIG_GREEN_LED, 1); +	gpio_set_value(CONFIG_GREEN_LED, 1);  }  #endif  #ifdef CONFIG_YELLOW_LED  void yellow_led_on(void)  { -	at91_set_gpio_value(CONFIG_YELLOW_LED, 0); +	gpio_set_value(CONFIG_YELLOW_LED, 0);  }  void yellow_led_off(void)  { -	at91_set_gpio_value(CONFIG_YELLOW_LED, 1); +	gpio_set_value(CONFIG_YELLOW_LED, 1);  }  #endif |