Commit 6df1dc05 authored by Matt Ranostay's avatar Matt Ranostay Committed by Jonathan Cameron
Browse files

tools: iio: lsiio: enumerate processed channels



Enumerate the processed channels (e.g. *_input) as well the raw channels.

Signed-off-by: default avatarMatt Ranostay <mranostay@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 8c11e161
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -51,7 +51,8 @@ static int dump_channels(const char *dev_dir_name)

	while (ent = readdir(dp), ent)
		if (check_prefix(ent->d_name, "in_") &&
		    check_postfix(ent->d_name, "_raw"))
		   (check_postfix(ent->d_name, "_raw") ||
		    check_postfix(ent->d_name, "_input")))
			printf("   %-10s\n", ent->d_name);

	return (closedir(dp) == -1) ? -errno : 0;