From: Nuno Sá Date: Wed, 13 Jul 2022 13:14:21 +0000 (+0200) Subject: dt-bindings: gpio: add pull-disable flag X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d042656a2170ce1b0d1a72d81a99bc93f0170358;p=linux.git dt-bindings: gpio: add pull-disable flag This extends the flags that can be used in GPIO specifiers to indicate that no bias is intended in the pin. Signed-off-by: Nuno Sá Reviewed-by: Linus Walleij Acked-by: Rob Herring Signed-off-by: Bartosz Golaszewski --- diff --git a/include/dt-bindings/gpio/gpio.h b/include/dt-bindings/gpio/gpio.h index c029467e828b2..5566e58196a22 100644 --- a/include/dt-bindings/gpio/gpio.h +++ b/include/dt-bindings/gpio/gpio.h @@ -39,4 +39,7 @@ /* Bit 5 express pull down */ #define GPIO_PULL_DOWN 32 +/* Bit 6 express pull disable */ +#define GPIO_PULL_DISABLE 64 + #endif