On Mon, May 8, 2023 at 3:20 PM Milo Spadacini <milo.spadacini@xxxxxxxxx> wrote: > > 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@xxxxxxxxx> > --- > V2 -> V3 add signature > V1 -> V2 fix commit syntax > --- > tools/gpio/lsgpio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/gpio/lsgpio.c b/tools/gpio/lsgpio.c > index c61d061247e1..52a0be45410c 100644 > --- a/tools/gpio/lsgpio.c > +++ b/tools/gpio/lsgpio.c > @@ -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); > } > } > > -- > 2.34.1 > Applied, thanks! Bart