We're under the IS_ERR() branch so we know that 'ret', which got assigned
the value of PTR_ERR(di) is always negative, so there's no point in
checking if it's negative.
Reviewed-by: Boris Burkov <boris@bur.io>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
/* Nothing found, we're safe */
if (ret == -ENOENT)
return 0;
-
- if (ret < 0)
- return ret;
+ return ret;
}
/* we found an item, look for our name in the item */