mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-22 01:58:42 +00:00
Driver Core: drm: add nodename for drm devices
This adds support to the drm core to report the proper device name to userspace for the drm devices. Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Jan Blunck <jblunck@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
6fd4693375
commit
02200d0664
@ -70,6 +70,11 @@ static ssize_t version_show(struct class *dev, char *buf)
|
||||
CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
|
||||
}
|
||||
|
||||
static char *drm_nodename(struct device *dev)
|
||||
{
|
||||
return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev));
|
||||
}
|
||||
|
||||
static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
|
||||
|
||||
/**
|
||||
@ -101,6 +106,8 @@ struct class *drm_sysfs_create(struct module *owner, char *name)
|
||||
if (err)
|
||||
goto err_out_class;
|
||||
|
||||
class->nodename = drm_nodename;
|
||||
|
||||
return class;
|
||||
|
||||
err_out_class:
|
||||
|
Loading…
x
Reference in New Issue
Block a user