aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2015-11-21 09:55:03 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-12-03 12:01:11 -0500
commitc1500ba0b61e9abf95e0e7ecd3c4ad877f019abe (patch)
tree4b25abb8b81e5c146f9728a05de9df52ea981c7c
parent94c1733468664255e2431686155114c9b87c25e8 (diff)
[media] media: rc: remove unneeded code
Now that that the decoder modules are loaded on-demand we can move loading the lirc module to rc_register_device directly and remove unneeded functions and comments. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
-rw-r--r--drivers/media/rc/rc-core-priv.h7
-rw-r--r--drivers/media/rc/rc-ir-raw.c10
-rw-r--r--drivers/media/rc/rc-main.c4
3 files changed, 1 insertions, 20 deletions
diff --git a/drivers/media/rc/rc-core-priv.h b/drivers/media/rc/rc-core-priv.h
index 071651ad7805..7359f3d03b64 100644
--- a/drivers/media/rc/rc-core-priv.h
+++ b/drivers/media/rc/rc-core-priv.h
@@ -167,11 +167,4 @@ void ir_raw_init(void);
167 * loads the compiled decoders for their usage with IR raw events 167 * loads the compiled decoders for their usage with IR raw events
168 */ 168 */
169 169
170/* from ir-lirc-codec.c */
171#ifdef CONFIG_IR_LIRC_CODEC_MODULE
172#define load_lirc_codec() request_module_nowait("ir-lirc-codec")
173#else
174static inline void load_lirc_codec(void) { }
175#endif
176
177#endif /* _RC_CORE_PRIV */ 170#endif /* _RC_CORE_PRIV */
diff --git a/drivers/media/rc/rc-ir-raw.c b/drivers/media/rc/rc-ir-raw.c
index c6433e8f03b8..c69807fe2fef 100644
--- a/drivers/media/rc/rc-ir-raw.c
+++ b/drivers/media/rc/rc-ir-raw.c
@@ -360,13 +360,3 @@ void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
360 mutex_unlock(&ir_raw_handler_lock); 360 mutex_unlock(&ir_raw_handler_lock);
361} 361}
362EXPORT_SYMBOL(ir_raw_handler_unregister); 362EXPORT_SYMBOL(ir_raw_handler_unregister);
363
364void ir_raw_init(void)
365{
366 /* Load the decoder modules */
367 load_lirc_codec();
368
369 /* If needed, we may later add some init code. In this case,
370 it is needed to change the CONFIG_MODULE test at rc-core.h
371 */
372}
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
index 9d05d03caa13..1042fa331a07 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -1471,10 +1471,8 @@ int rc_register_device(struct rc_dev *dev)
1471 kfree(path); 1471 kfree(path);
1472 1472
1473 if (dev->driver_type == RC_DRIVER_IR_RAW) { 1473 if (dev->driver_type == RC_DRIVER_IR_RAW) {
1474 /* Load raw decoders, if they aren't already */
1475 if (!raw_init) { 1474 if (!raw_init) {
1476 IR_dprintk(1, "Loading raw decoders\n"); 1475 request_module_nowait("ir-lirc-codec");
1477 ir_raw_init();
1478 raw_init = true; 1476 raw_init = true;
1479 } 1477 }
1480 /* calls ir_register_device so unlock mutex here*/ 1478 /* calls ir_register_device so unlock mutex here*/