aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/gpio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/gpio.h b/include/linux/gpio.h
index 4b47ed96f131..32720baf70f1 100644
--- a/include/linux/gpio.h
+++ b/include/linux/gpio.h
@@ -35,13 +35,13 @@ static inline int gpio_request(unsigned gpio, const char *label)
35 return -ENOSYS; 35 return -ENOSYS;
36} 36}
37 37
38static inline int __must_check gpio_request_one(unsigned gpio, 38static inline int gpio_request_one(unsigned gpio,
39 unsigned long flags, const char *label) 39 unsigned long flags, const char *label)
40{ 40{
41 return -ENOSYS; 41 return -ENOSYS;
42} 42}
43 43
44static inline int __must_check gpio_request_array(struct gpio *array, size_t num) 44static inline int gpio_request_array(struct gpio *array, size_t num)
45{ 45{
46 return -ENOSYS; 46 return -ENOSYS;
47} 47}