#ifndef _ASM_GENERIC_GPIO_H#define _ASM_GENERIC_GPIO_H/* platforms that don't directly support access to GPIOs through I2C, SPI, * or other blocking infrastructure can use these wrappers. */staticinlineintgpio_cansleep(unsignedgpio){return0;}staticinlineintgpio_get_value_cansleep(unsignedgpio){might_sleep();returngpio_get_value(gpio);}staticinlinevoidgpio_set_value_cansleep(unsignedgpio,intvalue){might_sleep();gpio_set_value(gpio,value);}#endif /* _ASM_GENERIC_GPIO_H */