Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de226ec8 authored by David Härdeman's avatar David Härdeman Committed by Mauro Carvalho Chehab
Browse files

[media] media: lirc_dev: clarify error handling



If an error is generated, it is more logical to error out ASAP.

Signed-off-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent cf09e3c9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -286,7 +286,7 @@ EXPORT_SYMBOL(lirc_unregister_driver);
int lirc_dev_fop_open(struct inode *inode, struct file *file)
{
	struct irctl *ir;
	int retval = 0;
	int retval;

	if (iminor(inode) >= MAX_IRCTL_DEVICES) {
		pr_err("open result for %d is -ENODEV\n", iminor(inode));
@@ -327,9 +327,11 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file)

	ir->open++;

error:
	nonseekable_open(inode, file);

	return 0;

error:
	return retval;
}
EXPORT_SYMBOL(lirc_dev_fop_open);