From 54d78652c19cda7256fd5a086e806ef0b5fe32bc Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 23 Jun 2015 08:38:29 +0200 Subject: devinfo: fix return value devinfo on a non existing device prints: no such device: blah devinfo: Operation not permitted The second message comes because devinfo returns -1 which is -EPERM. Just return -ENODEV which will print: devinfo: No such device Signed-off-by: Sascha Hauer --- commands/devinfo.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'commands') diff --git a/commands/devinfo.c b/commands/devinfo.c index e61aaa24e8..3c9d6a6b9d 100644 --- a/commands/devinfo.c +++ b/commands/devinfo.c @@ -68,11 +68,8 @@ static int do_devinfo(int argc, char *argv[]) } } else { dev = get_device_by_name(argv[1]); - - if (!dev) { - printf("no such device: %s\n",argv[1]); - return -1; - } + if (!dev) + return -ENODEV; if (dev->num_resources) printf("Resources:\n"); -- cgit v1.2.3