gpio.h 301 B

12345678910111213141516
  1. #ifndef __ASM_MIPS_MACH_LANTIQ_GPIO_H
  2. #define __ASM_MIPS_MACH_LANTIQ_GPIO_H
  3. static inline int gpio_to_irq(unsigned int gpio)
  4. {
  5. return -1;
  6. }
  7. #define gpio_get_value __gpio_get_value
  8. #define gpio_set_value __gpio_set_value
  9. #define gpio_cansleep __gpio_cansleep
  10. #include <asm-generic/gpio.h>
  11. #endif