diff options
author | Kent Gibson <warthog618@gmail.com> | 2020-04-30 08:09:16 +0800 |
---|---|---|
committer | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2020-05-05 18:27:09 +0200 |
commit | 3831c051dfbf58595085e432acc00ad4efcf54cc (patch) | |
tree | b3a370e80c78314c5ea16a6e8ddd5e61862051fc /tools/gpio/lsgpio.c | |
parent | 17f96ee2b9be9b65517fe167cfb13b86b33f3a1d (diff) | |
download | linux-3831c051dfbf58595085e432acc00ad4efcf54cc.tar.gz linux-3831c051dfbf58595085e432acc00ad4efcf54cc.tar.bz2 linux-3831c051dfbf58595085e432acc00ad4efcf54cc.zip |
tools: gpio: add bias flags to lsgpio
Add display of the bias flags.
Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'tools/gpio/lsgpio.c')
-rw-r--r-- | tools/gpio/lsgpio.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/gpio/lsgpio.c b/tools/gpio/lsgpio.c index e1430f504c13..8a71ad36f83b 100644 --- a/tools/gpio/lsgpio.c +++ b/tools/gpio/lsgpio.c @@ -49,6 +49,18 @@ struct gpio_flag flagnames[] = { .name = "open-source", .mask = GPIOLINE_FLAG_OPEN_SOURCE, }, + { + .name = "pull-up", + .mask = GPIOLINE_FLAG_BIAS_PULL_UP, + }, + { + .name = "pull-down", + .mask = GPIOLINE_FLAG_BIAS_PULL_DOWN, + }, + { + .name = "bias-disabled", + .mask = GPIOLINE_FLAG_BIAS_DISABLE, + }, }; void print_flags(unsigned long flags) |