aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/IR/ir-keytable.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/IR/ir-keytable.c')
-rw-r--r--drivers/media/IR/ir-keytable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/IR/ir-keytable.c b/drivers/media/IR/ir-keytable.c
index 99cad829a18a..5d4ddc9f4cab 100644
--- a/drivers/media/IR/ir-keytable.c
+++ b/drivers/media/IR/ir-keytable.c
@@ -461,7 +461,7 @@ static void ir_close(struct input_dev *input_dev)
461} 461}
462 462
463/** 463/**
464 * ir_input_register() - sets the IR keycode table and add the handlers 464 * __ir_input_register() - sets the IR keycode table and add the handlers
465 * for keymap table get/set 465 * for keymap table get/set
466 * @input_dev: the struct input_dev descriptor of the device 466 * @input_dev: the struct input_dev descriptor of the device
467 * @rc_tab: the struct ir_scancode_table table of scancode/keymap 467 * @rc_tab: the struct ir_scancode_table table of scancode/keymap
@@ -471,7 +471,7 @@ static void ir_close(struct input_dev *input_dev)
471 * It will register the input/evdev interface for the device and 471 * It will register the input/evdev interface for the device and
472 * register the syfs code for IR class 472 * register the syfs code for IR class
473 */ 473 */
474int ir_input_register(struct input_dev *input_dev, 474int __ir_input_register(struct input_dev *input_dev,
475 const struct ir_scancode_table *rc_tab, 475 const struct ir_scancode_table *rc_tab,
476 const struct ir_dev_props *props, 476 const struct ir_dev_props *props,
477 const char *driver_name) 477 const char *driver_name)
@@ -539,7 +539,7 @@ err:
539 kfree(ir_dev); 539 kfree(ir_dev);
540 return rc; 540 return rc;
541} 541}
542EXPORT_SYMBOL_GPL(ir_input_register); 542EXPORT_SYMBOL_GPL(__ir_input_register);
543 543
544/** 544/**
545 * ir_input_unregister() - unregisters IR and frees resources 545 * ir_input_unregister() - unregisters IR and frees resources