]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
[media] media: rc: include device name in rc udev event
authorSean Young <sean@mess.org>
Fri, 1 Sep 2017 14:34:23 +0000 (11:34 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 4 Oct 2017 18:24:31 +0000 (15:24 -0300)
This name is also stored in the input's device name, but that
is not available in TX only hardware (no input device).

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/rc/rc-main.c

index 42ac3490b5f85145067437f70d7ceaaa2f92377b..8c828fee4f5a71ce9680155eb7d3c466e1d9606f 100644 (file)
@@ -1480,6 +1480,8 @@ static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
                ADD_HOTPLUG_VAR("NAME=%s", dev->rc_map.name);
        if (dev->driver_name)
                ADD_HOTPLUG_VAR("DRV_NAME=%s", dev->driver_name);
+       if (dev->device_name)
+               ADD_HOTPLUG_VAR("DEV_NAME=%s", dev->device_name);
 
        return 0;
 }