diff options
| author | Andy Shevchenko <[email protected]> | 2023-01-02 23:08:50 +0200 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2023-01-30 15:55:29 +0100 |
| commit | f2527d8f566a45fa00ee5abd04d1c9476d4d704f (patch) | |
| tree | 8afbedc450ea363b663a3a7c60800783df14b34a /include/linux | |
| parent | 6f8ecb7f85f441eb7d78ba2a4df45ee8a821934e (diff) | |
gpio: Remove unused and obsoleted gpio_export_link()
gpio_export_link() is legacy and unused API, remove it for good.
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Reviewed-by: Yanteng Si <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/gpio.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 346f60bbab30..e94815b3ce1d 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h @@ -197,14 +197,6 @@ static inline int gpio_export(unsigned gpio, bool direction_may_change) return -EINVAL; } -static inline int gpio_export_link(struct device *dev, const char *name, - unsigned gpio) -{ - /* GPIO can never have been exported */ - WARN_ON(1); - return -EINVAL; -} - static inline void gpio_unexport(unsigned gpio) { /* GPIO can never have been exported */ |