summaryrefslogtreecommitdiffstats
path: root/tools/iio
diff options
context:
space:
mode:
Diffstat (limited to 'tools/iio')
-rw-r--r--tools/iio/generic_buffer.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/iio/generic_buffer.c b/tools/iio/generic_buffer.c
index 9f7b85bf6ada..01c4f67801e0 100644
--- a/tools/iio/generic_buffer.c
+++ b/tools/iio/generic_buffer.c
@@ -328,6 +328,15 @@ int main(int argc, char **argv)
328 "diag %s\n", dev_dir_name); 328 "diag %s\n", dev_dir_name);
329 goto error_free_triggername; 329 goto error_free_triggername;
330 } 330 }
331 if (!num_channels) {
332 fprintf(stderr,
333 "No channels are enabled, we have nothing to scan.\n");
334 fprintf(stderr, "Enable channels manually in "
335 FORMAT_SCAN_ELEMENTS_DIR
336 "/*_en and try again.\n", dev_dir_name);
337 ret = -ENOENT;
338 goto error_free_triggername;
339 }
331 340
332 /* 341 /*
333 * Construct the directory name for the associated buffer. 342 * Construct the directory name for the associated buffer.