char buf;
int fd;
- fd = test_debugfs_open(chip_index, line_offset, O_RDONLY);
+ fd = test_debugfs_open(globals.test_ctx.chips[chip_index]->number,
+ line_offset, O_RDONLY);
rd = read(fd, &buf, 1);
if (rd < 0)
ssize_t wr;
int fd;
- fd = test_debugfs_open(chip_index, line_offset, O_WRONLY);
+ fd = test_debugfs_open(globals.test_ctx.chips[chip_index]->number,
+ line_offset, O_WRONLY);
buf[0] = val ? '1' : 0;
buf[1] = '\n';
ev->running = true;
}
- ev->chip_index = chip_index;
+ ev->chip_index = globals.test_ctx.chips[chip_index]->number;
ev->line_offset = line_offset;
ev->freq = freq;