diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2015-11-16 20:52:26 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-11-19 14:38:41 +0100 |
commit | acc1c3c688ed8cc862ddc007eab0dcef839f4ec8 (patch) | |
tree | 587cd89e6ee33c3d307bbbf14932c421a4caf483 /drivers/media/rc/rc-ir-raw.c | |
parent | [media] media: rc: constify struct proto_names (diff) | |
download | linux-acc1c3c688ed8cc862ddc007eab0dcef839f4ec8.tar.xz linux-acc1c3c688ed8cc862ddc007eab0dcef839f4ec8.zip |
[media] media: rc: load decoder modules on-demand
Remove code for unconditional decoder module loading (except lirc).
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/rc/rc-ir-raw.c')
-rw-r--r-- | drivers/media/rc/rc-ir-raw.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/media/rc/rc-ir-raw.c b/drivers/media/rc/rc-ir-raw.c index 5cfb61fc22c6..763f8a87e344 100644 --- a/drivers/media/rc/rc-ir-raw.c +++ b/drivers/media/rc/rc-ir-raw.c @@ -362,17 +362,7 @@ EXPORT_SYMBOL(ir_raw_handler_unregister); void ir_raw_init(void) { /* Load the decoder modules */ - - load_nec_decode(); - load_rc5_decode(); - load_rc6_decode(); - load_jvc_decode(); - load_sony_decode(); - load_sanyo_decode(); - load_sharp_decode(); - load_mce_kbd_decode(); load_lirc_codec(); - load_xmp_decode(); /* If needed, we may later add some init code. In this case, it is needed to change the CONFIG_MODULE test at rc-core.h |