diff options
author | David Härdeman <david@hardeman.nu> | 2015-05-20 01:03:12 +0300 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-09-30 12:13:08 +0300 |
commit | 152824ba7607ab70ad03aaa3668567c761fe3d90 (patch) | |
tree | 66aadfa3849675544b6e349eb894db6d0cf116da /drivers/media | |
parent | a6a47b4077106e462d40d162e858f26d2c84d393 (diff) | |
download | linux-152824ba7607ab70ad03aaa3668567c761fe3d90.tar.xz |
rc-core: fix remove uevent generation
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: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/rc/rc-main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index 46da365c9c84..f972de9f02e6 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c @@ -978,9 +978,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) |