diff options
| author | Kent Gibson <[email protected]> | 2020-04-30 00:09:16 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2020-05-05 16:27:09 +0000 |
| commit | 3831c051dfbf58595085e432acc00ad4efcf54cc (patch) | |
| tree | b3a370e80c78314c5ea16a6e8ddd5e61862051fc /tools/gpio/lsgpio.c | |
| parent | gpio-f7188x: Add GPIO support for F81865 (diff) | |
| download | kernel-3831c051dfbf58595085e432acc00ad4efcf54cc.tar.gz kernel-3831c051dfbf58595085e432acc00ad4efcf54cc.zip | |
tools: gpio: add bias flags to lsgpio
Add display of the bias flags.
Signed-off-by: Kent Gibson <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
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) |
