projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
715d29a
)
[media] lirc_dev: call cdev_del *after* irctl cleanup
author
Jarod Wilson
<jarod@redhat.com>
Mon, 18 Oct 2010 20:30:20 +0000
(17:30 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Fri, 22 Oct 2010 22:05:36 +0000
(20:05 -0200)
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/IR/lirc_dev.c
patch
|
blob
|
history
diff --git
a/drivers/media/IR/lirc_dev.c
b/drivers/media/IR/lirc_dev.c
index
e3dbf12
..
8fdb7e1
100644
(file)
--- a/
drivers/media/IR/lirc_dev.c
+++ b/
drivers/media/IR/lirc_dev.c
@@
-402,7
+402,6
@@
int lirc_unregister_driver(int minor)
ir->d.set_use_dec(ir->d.data);
module_put(ir->cdev.owner);
mutex_unlock(&ir->irctl_lock);
- cdev_del(&ir->cdev);
} else {
lirc_irctl_cleanup(ir);
cdev_del(&ir->cdev);
@@
-492,6
+491,7
@@
int lirc_dev_fop_close(struct inode *inode, struct file *file)
module_put(ir->cdev.owner);
} else {
lirc_irctl_cleanup(ir);
+ cdev_del(&ir->cdev);
irctls[ir->d.minor] = NULL;
kfree(ir);
}