mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
media: lirc_dev: Make lirc_class constant
Since commit 43a7206b09
("driver core: class: make class_register() take
a const *"), the driver core allows for struct class to be in read-only
memory, so move the lirc_class structure to be declared at build time
placing it into read-only memory, instead of having to be dynamically
allocated at boot time.
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
committed by
CrazyCat
parent
e8c0f70280
commit
cd24667f68
@@ -27,7 +27,9 @@ static dev_t lirc_base_dev;
|
|||||||
static DEFINE_IDA(lirc_ida);
|
static DEFINE_IDA(lirc_ida);
|
||||||
|
|
||||||
/* Only used for sysfs but defined to void otherwise */
|
/* Only used for sysfs but defined to void otherwise */
|
||||||
static struct class *lirc_class;
|
static const struct class lirc_class = {
|
||||||
|
.name = "lirc",
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* lirc_raw_event() - Send raw IR data to lirc to be relayed to userspace
|
* lirc_raw_event() - Send raw IR data to lirc to be relayed to userspace
|
||||||
@@ -723,7 +725,7 @@ int lirc_register(struct rc_dev *dev)
|
|||||||
return minor;
|
return minor;
|
||||||
|
|
||||||
device_initialize(&dev->lirc_dev);
|
device_initialize(&dev->lirc_dev);
|
||||||
dev->lirc_dev.class = lirc_class;
|
dev->lirc_dev.class = &lirc_class;
|
||||||
dev->lirc_dev.parent = &dev->dev;
|
dev->lirc_dev.parent = &dev->dev;
|
||||||
dev->lirc_dev.release = lirc_release_device;
|
dev->lirc_dev.release = lirc_release_device;
|
||||||
dev->lirc_dev.devt = MKDEV(MAJOR(lirc_base_dev), minor);
|
dev->lirc_dev.devt = MKDEV(MAJOR(lirc_base_dev), minor);
|
||||||
@@ -788,15 +790,13 @@ int __init lirc_dev_init(void)
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
lirc_class = class_create("lirc");
|
retval = class_register(&lirc_class);
|
||||||
if (IS_ERR(lirc_class)) {
|
if (retval)
|
||||||
pr_err("class_create failed\n");
|
return retval;
|
||||||
return PTR_ERR(lirc_class);
|
|
||||||
}
|
|
||||||
|
|
||||||
retval = alloc_chrdev_region(&lirc_base_dev, 0, RC_DEV_MAX, "lirc");
|
retval = alloc_chrdev_region(&lirc_base_dev, 0, RC_DEV_MAX, "lirc");
|
||||||
if (retval) {
|
if (retval) {
|
||||||
class_destroy(lirc_class);
|
class_unregister(&lirc_class);
|
||||||
pr_err("alloc_chrdev_region failed\n");
|
pr_err("alloc_chrdev_region failed\n");
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
@@ -809,7 +809,7 @@ int __init lirc_dev_init(void)
|
|||||||
|
|
||||||
void __exit lirc_dev_exit(void)
|
void __exit lirc_dev_exit(void)
|
||||||
{
|
{
|
||||||
class_destroy(lirc_class);
|
class_unregister(&lirc_class);
|
||||||
unregister_chrdev_region(lirc_base_dev, RC_DEV_MAX);
|
unregister_chrdev_region(lirc_base_dev, RC_DEV_MAX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user