summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Härdeman <david@hardeman.nu>2015-05-19 19:03:12 -0300
committerLuis Henriques <luis.henriques@canonical.com>2015-09-28 10:21:30 +0100
commit9b04189c2c5cb513635d0e4912d5555a7cefa185 (patch)
tree8a2ff557ff3a56a87c14434d258000a52a395075
parent0ca0bcfcfe1c84dc83e47324677add51e7b46ced (diff)
downloadlinux-stable-9b04189c2c5cb513635d0e4912d5555a7cefa185.tar.gz
linux-stable-9b04189c2c5cb513635d0e4912d5555a7cefa185.tar.bz2
linux-stable-9b04189c2c5cb513635d0e4912d5555a7cefa185.zip
[media] 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: Luis Henriques <luis.henriques@canonical.com>
-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 970b93d6f399..af56ea915bad 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -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)