Commit 323b7fe8 authored by Wolfram Sang's avatar Wolfram Sang Committed by Linus Torvalds

include/gpio.h: remove remaining __must_check-annotiations

Commit 5f829e40 (gpiolib: add missing functions
to generic fallback) also introduced two.
Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Cc: Greg KH <gregkh@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 836cb711
......@@ -35,13 +35,13 @@ static inline int gpio_request(unsigned gpio, const char *label)
return -ENOSYS;
}
static inline int __must_check gpio_request_one(unsigned gpio,
static inline int gpio_request_one(unsigned gpio,
unsigned long flags, const char *label)
{
return -ENOSYS;
}
static inline int __must_check gpio_request_array(struct gpio *array, size_t num)
static inline int gpio_request_array(struct gpio *array, size_t num)
{
return -ENOSYS;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment