summaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/rc-main.c
diff options
context:
space:
mode:
authorDavid Härdeman2015-05-20 00:03:12 +0200
committerMauro Carvalho Chehab2015-07-06 13:26:14 +0200
commita66b0c41ad277ae62a3ae6ac430a71882f899557 (patch)
tree8ef4dd3f75376200c274eab2b8eae8d8e018b97d /drivers/media/rc/rc-main.c
parent[media] sh_vou: declare static functions as such (diff)
downloadkernel-qcow2-linux-a66b0c41ad277ae62a3ae6ac430a71882f899557.tar.gz
kernel-qcow2-linux-a66b0c41ad277ae62a3ae6ac430a71882f899557.tar.xz
kernel-qcow2-linux-a66b0c41ad277ae62a3ae6ac430a71882f899557.zip
[media] rc-core: fix remove uevent generation
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. Cc: stable@kernel.org Signed-off-by: David Härdeman <david@hardeman.nu> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/rc/rc-main.c')
-rw-r--r--drivers/media/rc/rc-main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
index 9d015db65280..84d142bdb7a2 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -1193,9 +1193,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)