diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-05-30 01:14:45 +0300 |
---|---|---|
committer | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-06-01 09:52:31 +0200 |
commit | 2f804aca48322f02a8f44cca540663845ee80fb1 (patch) | |
tree | be234a80482b12e8da85d7c66bc1eb81335588b4 /include | |
parent | 6dd032ba4474bc35216a76195889b2127d2aeaaa (diff) | |
download | lwn-2f804aca48322f02a8f44cca540663845ee80fb1.tar.gz lwn-2f804aca48322f02a8f44cca540663845ee80fb1.zip |
gpiolib: Kill unused GPIOF_EXPORT and Co
There is no use of the GPIOF_EXPORT in the kernel. Kill it for good.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/gpio.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 8528353e073b..86963a00b018 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h @@ -38,11 +38,6 @@ struct device; /* Gpio pin is open source */ #define GPIOF_OPEN_SOURCE (1 << 4) -#define GPIOF_EXPORT (1 << 5) -#define GPIOF_EXPORT_CHANGEABLE (1 << 6) -#define GPIOF_EXPORT_DIR_FIXED (GPIOF_EXPORT) -#define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE) - /** * struct gpio - a structure describing a GPIO with configuration * @gpio: the GPIO number |