This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/v4l-dvb.git tree:

Subject: V4L/DVB: IR/imon: use the proper ir-core device unregister function
Author:  Jarod Wilson <[email protected]>
Date:    Wed Jun 16 17:07:39 2010 -0300

Was using input_unregister_device directly, instead of using
ir_input_unregister, which tears down a bunch of other things in
addition to eventually calling input_unregister_device.

Signed-off-by: Jarod Wilson <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/IR/imon.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

---

http://git.linuxtv.org/v4l-dvb.git?a=commitdiff;h=fca712c1b62e6e3157171713ee7017728566f28c

diff --git a/drivers/media/IR/imon.c b/drivers/media/IR/imon.c
index 5e20456..4b1fe9b 100644
--- a/drivers/media/IR/imon.c
+++ b/drivers/media/IR/imon.c
@@ -1941,7 +1941,7 @@ static struct imon_context *imon_init_intf0(struct 
usb_interface *intf)
        return ictx;
 
 urb_submit_failed:
-       input_unregister_device(ictx->idev);
+       ir_input_unregister(ictx->idev);
        input_free_device(ictx->idev);
 idev_setup_failed:
 find_endpoint_failed:
@@ -2299,7 +2299,7 @@ static void __devexit imon_disconnect(struct 
usb_interface *interface)
        if (ifnum == 0) {
                ictx->dev_present_intf0 = 0;
                usb_kill_urb(ictx->rx_urb_intf0);
-               input_unregister_device(ictx->idev);
+               ir_input_unregister(ictx->idev);
                if (ictx->display_supported) {
                        if (ictx->display_type == IMON_DISPLAY_TYPE_LCD)
                                usb_deregister_dev(interface, &imon_lcd_class);

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to