[media] media: rc: fix decoder module unloading
authorHeiner Kallweit <hkallweit1@gmail.com>
Mon, 16 Nov 2015 19:51:56 +0000 (17:51 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 19 Nov 2015 13:36:29 +0000 (11:36 -0200)
Currently, if a decoder module is unloadad, the respective protocol
is still shown as enabled (if it was enabled before).
Fix this by resetting the respective protocol bits if a decoder
module is unloaded.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/rc/rc-ir-raw.c

index ad260520a9d4071a9c4198051832dc7523a17a50..5cfb61fc22c635dd469ad511b2321739bbc2e9f9 100644 (file)
@@ -246,6 +246,14 @@ static int change_protocol(struct rc_dev *dev, u64 *rc_type)
        return 0;
 }
 
+static void ir_raw_disable_protocols(struct rc_dev *dev, u64 protocols)
+{
+       mutex_lock(&dev->lock);
+       dev->enabled_protocols &= ~protocols;
+       dev->enabled_wakeup_protocols &= ~protocols;
+       mutex_unlock(&dev->lock);
+}
+
 /*
  * Used to (un)register raw event clients
  */
@@ -337,13 +345,16 @@ EXPORT_SYMBOL(ir_raw_handler_register);
 void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
 {
        struct ir_raw_event_ctrl *raw;
+       u64 protocols = ir_raw_handler->protocols;
 
        mutex_lock(&ir_raw_handler_lock);
        list_del(&ir_raw_handler->list);
-       if (ir_raw_handler->raw_unregister)
-               list_for_each_entry(raw, &ir_raw_client_list, list)
+       list_for_each_entry(raw, &ir_raw_client_list, list) {
+               ir_raw_disable_protocols(raw->dev, protocols);
+               if (ir_raw_handler->raw_unregister)
                        ir_raw_handler->raw_unregister(raw->dev);
-       available_protocols &= ~ir_raw_handler->protocols;
+       }
+       available_protocols &= ~protocols;
        mutex_unlock(&ir_raw_handler_lock);
 }
 EXPORT_SYMBOL(ir_raw_handler_unregister);
This page took 0.027486 seconds and 5 git commands to generate.