mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
tools: gpio: fix debounce_period_us output of lsgpio
Fix incorrect output that could occur when more attributes are used and GPIO_V2_LINE_ATTR_ID_DEBOUNCE is not the first one. Signed-off-by: Milo Spadacini <milo.spadacini@gmail.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
This commit is contained in:
parent
ac9a78681b
commit
eb4b8eca1b
@ -94,7 +94,7 @@ static void print_attributes(struct gpio_v2_line_info *info)
|
||||
for (i = 0; i < info->num_attrs; i++) {
|
||||
if (info->attrs[i].id == GPIO_V2_LINE_ATTR_ID_DEBOUNCE)
|
||||
fprintf(stdout, ", debounce_period=%dusec",
|
||||
info->attrs[0].debounce_period_us);
|
||||
info->attrs[i].debounce_period_us);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user