gpioinfo: mark kernel claimed lines as used
authorRamon Fried <rfried.dev@gmail.com>
Wed, 31 Jul 2019 17:38:14 +0000 (20:38 +0300)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 1 Aug 2019 08:08:25 +0000 (10:08 +0200)
In case where the GPIOLINE_FLAG_KERNEL flag was set and no consumer
string is provided by the kernel, the used column was still showing
the pin as "unused" Fix that by writing "kernel".

Signed-off-by: Ramon Fried <rfried.dev@gmail.com>
[Bartosz:
  - fixed indentation and alignment
  - tweaked the commit message formatting]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tools/gpioinfo.c

index bb17262b84b244a0f321b1e4e7031bb4b0e2a00e..8a1d00d67f71e43889198f72076caeb67f064365 100644 (file)
@@ -119,8 +119,12 @@ static void list_lines(struct gpiod_chip *chip)
                     : prinfo(&of, 12, "unnamed");
                printf(" ");
 
-               consumer ? prinfo(&of, 12, "\"%s\"", consumer)
-                        : prinfo(&of, 12, "unused");
+               if (!gpiod_line_is_used(line))
+                       prinfo(&of, 12, "unused");
+               else
+                       consumer ? prinfo(&of, 12, "\"%s\"", consumer)
+                                : prinfo(&of, 12, "kernel");
+
                printf(" ");
 
                prinfo(&of, 8, "%s ", direction == GPIOD_LINE_DIRECTION_INPUT