mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 16:25:42 -04:00
staging/gdm72xx: return PTR_ERR rather -ENOENT
return the error of filp_open rather returning -ENOENT. Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a6e28b3420
commit
d67030d215
@@ -174,7 +174,7 @@ int usb_boot(struct usb_device *usbdev, u16 pid)
|
||||
if (IS_ERR(filp)) {
|
||||
printk(KERN_ERR "Can't find %s.\n", img_name);
|
||||
set_fs(fs);
|
||||
ret = -ENOENT;
|
||||
ret = PTR_ERR(filp);
|
||||
goto restore_fs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user