[AVR32] gpio_*_cansleep() fix

The AVR32 <asm/gpio.h> was missing the gpio_*_cansleep() calls,
breaking compilation for some code using them.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

authored by David Brownell and committed by Haavard Skinnemoen 2ae795b0 126187f1

+2
+2
include/asm-avr32/arch-at32ap/gpio.h
··· 14 14 int gpio_get_value(unsigned int gpio); 15 15 void gpio_set_value(unsigned int gpio, int value); 16 16 17 + #include <asm-generic/gpio.h> /* cansleep wrappers */ 18 + 17 19 static inline int gpio_to_irq(unsigned int gpio) 18 20 { 19 21 return gpio + GPIO_IRQ_BASE;