]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
[media] rc-core: fix remove uevent generation
authorDavid Härdeman <david@hardeman.nu>
Tue, 19 May 2015 22:03:12 +0000 (19:03 -0300)
committerLuis Henriques <luis.henriques@canonical.com>
Mon, 28 Sep 2015 09:21:30 +0000 (10:21 +0100)
commit a66b0c41ad277ae62a3ae6ac430a71882f899557 upstream.

The input_dev is already gone when the rc device is being unregistered
so checking for its presence only means that no remove uevent will be
generated.

Signed-off-by: David Härdeman <david@hardeman.nu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/media/rc/rc-main.c

index 970b93d6f399b1ba87fbd22c3065e98a938a077e..af56ea915bad9b5d0b510a85cc660ba74540ee55 100644 (file)
@@ -1162,9 +1162,6 @@ static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
 {
        struct rc_dev *dev = to_rc_dev(device);
 
-       if (!dev || !dev->input_dev)
-               return -ENODEV;
-
        if (dev->rc_map.name)
                ADD_HOTPLUG_VAR("NAME=%s", dev->rc_map.name);
        if (dev->driver_name)