The default mode (exit) doesn't have a callback so we need to check if
the callback funtion pointer isn't NULL.
Fixes: 9b6e6d268671 ("ctxless: drop all context-less interfaces")
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
output_regex_match ".*can't specify wait time in this mode"
}
+@test "gpioset: default mode" {
+ gpio_mockup_probe 8 8 8
+
+ run_tool gpioset "$(gpio_mockup_chip_name 1)" 0=1
+
+ test "$status" -eq "0"
+}
+
@test "gpioset: invalid mapping" {
gpio_mockup_probe 8 8 8
if (rv)
die_perror("unable to request lines");
- mode->callback(&cbdata);
+ if (mode->callback)
+ mode->callback(&cbdata);
gpiod_line_release_bulk(lines);
gpiod_chip_unref(chip);