diff options
| author | David Härdeman <david@hardeman.nu> | 2015-05-19 19:03:12 -0300 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-08-26 20:02:04 +0200 |
| commit | 771dd65c1d41ad80953c9080b7f9a50c601bd114 (patch) | |
| tree | be0119cd59a1765a51e8ec38469f14fb9d676a9b /drivers/media | |
| parent | 46818cd629475aebd4a7969dbe60aa0960d39e3d (diff) | |
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stefan Guendhoer <stefan@guendhoer.com>
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 8d3d74e7f..f61df1346 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c @@ -953,9 +953,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) |
