瀏覽代碼

Revert "gpio: remove broken irq_to_gpio() interface"

This reverts commit ee2204a37957daed80418ea8ffc4f5c3146fb8e7.
Linus Walleij 9 年之前
父節點
當前提交
2307f3aab8
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      include/linux/gpio.h

+ 12 - 0
include/linux/gpio.h

@@ -70,6 +70,11 @@ static inline int gpio_to_irq(unsigned int gpio)
 	return __gpio_to_irq(gpio);
 	return __gpio_to_irq(gpio);
 }
 }
 
 
+static inline int irq_to_gpio(unsigned int irq)
+{
+	return -EINVAL;
+}
+
 #endif /* ! CONFIG_ARCH_HAVE_CUSTOM_GPIO_H */
 #endif /* ! CONFIG_ARCH_HAVE_CUSTOM_GPIO_H */
 
 
 /* CONFIG_GPIOLIB: bindings for managed devices that want to request gpios */
 /* CONFIG_GPIOLIB: bindings for managed devices that want to request gpios */
@@ -217,6 +222,13 @@ static inline void gpiochip_unlock_as_irq(struct gpio_chip *chip,
 	WARN_ON(1);
 	WARN_ON(1);
 }
 }
 
 
+static inline int irq_to_gpio(unsigned irq)
+{
+	/* irq can never have been returned from gpio_to_irq() */
+	WARN_ON(1);
+	return -EINVAL;
+}
+
 static inline int
 static inline int
 gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
 gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
 		       unsigned int gpio_offset, unsigned int pin_offset,
 		       unsigned int gpio_offset, unsigned int pin_offset,