Since linux v5.1 the debugfs path for gpio-mockup changed. Use the new
path both for the main directory as well as for the chip subdirectories
which no longer use the chip's label.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
rv = pthread_cond_timedwait(&ev->cond, &ev->lock, &ts);
if (rv == ETIMEDOUT) {
path = xappend(NULL,
- "/sys/kernel/debug/gpio-mockup-event/gpio-mockup-%c/%u",
- 'A' + ev->chip_index, ev->line_offset);
+ "/sys/kernel/debug/gpio-mockup/gpiochip%d/%u",
+ ev->chip_index, ev->line_offset);
fd = open(path, O_RDWR);
free(path);