Commit 40fc5325 authored by David Härdeman's avatar David Härdeman Committed by Mauro Carvalho Chehab

[media] rc-core: rename ir_input_class to rc_class

The name is already misleading and will be more so in the future as the
connection to the input subsystem is obscured away further.
Signed-off-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent e76d4ce4
...@@ -715,14 +715,14 @@ static void ir_close(struct input_dev *idev) ...@@ -715,14 +715,14 @@ static void ir_close(struct input_dev *idev)
} }
/* class for /sys/class/rc */ /* class for /sys/class/rc */
static char *ir_devnode(struct device *dev, umode_t *mode) static char *rc_devnode(struct device *dev, umode_t *mode)
{ {
return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev)); return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev));
} }
static struct class ir_input_class = { static struct class rc_class = {
.name = "rc", .name = "rc",
.devnode = ir_devnode, .devnode = rc_devnode,
}; };
/* /*
...@@ -1016,7 +1016,7 @@ struct rc_dev *rc_allocate_device(void) ...@@ -1016,7 +1016,7 @@ struct rc_dev *rc_allocate_device(void)
setup_timer(&dev->timer_keyup, ir_timer_keyup, (unsigned long)dev); setup_timer(&dev->timer_keyup, ir_timer_keyup, (unsigned long)dev);
dev->dev.type = &rc_dev_type; dev->dev.type = &rc_dev_type;
dev->dev.class = &ir_input_class; dev->dev.class = &rc_class;
device_initialize(&dev->dev); device_initialize(&dev->dev);
__module_get(THIS_MODULE); __module_get(THIS_MODULE);
...@@ -1190,7 +1190,7 @@ EXPORT_SYMBOL_GPL(rc_unregister_device); ...@@ -1190,7 +1190,7 @@ EXPORT_SYMBOL_GPL(rc_unregister_device);
static int __init rc_core_init(void) static int __init rc_core_init(void)
{ {
int rc = class_register(&ir_input_class); int rc = class_register(&rc_class);
if (rc) { if (rc) {
printk(KERN_ERR "rc_core: unable to register rc class\n"); printk(KERN_ERR "rc_core: unable to register rc class\n");
return rc; return rc;
...@@ -1203,7 +1203,7 @@ static int __init rc_core_init(void) ...@@ -1203,7 +1203,7 @@ static int __init rc_core_init(void)
static void __exit rc_core_exit(void) static void __exit rc_core_exit(void)
{ {
class_unregister(&ir_input_class); class_unregister(&rc_class);
rc_map_unregister(&empty_map); rc_map_unregister(&empty_map);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment