return 0;
}
-EXPORT const char *
-gpio_mockup_chip_name(struct gpio_mockup *ctx, unsigned int idx)
+static bool index_valid(struct gpio_mockup *ctx, unsigned int idx)
{
if (!ctx->chips) {
errno = ENODEV;
- return NULL;
+ return false;
+ }
+
+ if (idx >= ctx->num_chips) {
+ errno = EINVAL;
+ return false;
}
+ return true;
+}
+
+EXPORT const char *
+gpio_mockup_chip_name(struct gpio_mockup *ctx, unsigned int idx)
+{
+ if (!index_valid(ctx, idx))
+ return NULL;
+
return ctx->chips[idx]->name;
}
EXPORT const char *
gpio_mockup_chip_path(struct gpio_mockup *ctx, unsigned int idx)
{
- if (!ctx->chips) {
- errno = ENODEV;
+ if (!index_valid(ctx, idx))
return NULL;
- }
return ctx->chips[idx]->path;
}
EXPORT int gpio_mockup_chip_num(struct gpio_mockup *ctx, unsigned int idx)
{
- if (!ctx->chips) {
- errno = ENODEV;
+ if (!index_valid(ctx, idx))
return -1;
- }
return ctx->chips[idx]->num;
}
char buf;
int fd;
- if (!ctx->chips) {
- errno = ENODEV;
+ if (!index_valid(ctx, chip_idx))
return -1;
- }
fd = debugfs_open(ctx->chips[chip_idx]->num, line_offset, O_RDONLY);
if (fd < 0)
ssize_t wr;
int fd;
- if (!ctx->chips) {
- errno = ENODEV;
+ if (!index_valid(ctx, chip_idx))
return -1;
- }
fd = debugfs_open(ctx->chips[chip_idx]->num, line_offset, O_WRONLY);
if (fd < 0)