mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
tools:iio:generic_buffer: pass up right error code
find_type_by_name() returns a valid error code in case of an error. Pass this code up instead of an artificial one. Signed-off-by: Hartmut Knaack <knaack.h@gmx.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
8749948a1b
commit
e83a47cf6a
@ -202,7 +202,7 @@ int main(int argc, char **argv)
|
||||
dev_num = find_type_by_name(device_name, "iio:device");
|
||||
if (dev_num < 0) {
|
||||
printf("Failed to find the %s\n", device_name);
|
||||
ret = -ENODEV;
|
||||
ret = dev_num;
|
||||
goto error_ret;
|
||||
}
|
||||
printf("iio device number being used is %d\n", dev_num);
|
||||
@ -228,7 +228,7 @@ int main(int argc, char **argv)
|
||||
trig_num = find_type_by_name(trigger_name, "trigger");
|
||||
if (trig_num < 0) {
|
||||
printf("Failed to find the trigger %s\n", trigger_name);
|
||||
ret = -ENODEV;
|
||||
ret = trig_num;
|
||||
goto error_free_triggername;
|
||||
}
|
||||
printf("iio trigger number being used is %d\n", trig_num);
|
||||
|
Loading…
Reference in New Issue
Block a user