On Thu, Mar 15, 2012 at 04:39:02PM -0300, Ezequiel Garcia wrote: > This changes rc_core to not load the IR decoders at load time, > postponing it to load only if a RC_DRIVER_IR_RAW device is registered > via rc_register_device. > > Signed-off-by: Ezequiel Garcia <elezegarcia@xxxxxxxxx> > --- > drivers/media/rc/rc-main.c | 8 ++++++-- > include/media/rc-core.h | 2 ++ > 2 files changed, 8 insertions(+), 2 deletions(-) > > diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c > index f6a930b..adf4a99 100644 > --- a/drivers/media/rc/rc-main.c > +++ b/drivers/media/rc/rc-main.c > @@ -1103,6 +1103,12 @@ int rc_register_device(struct rc_dev *dev) > kfree(path); > > if (dev->driver_type == RC_DRIVER_IR_RAW) { > + /* Load raw decoders, if they aren't already */ > + if (dev->raw_init) { > + IR_dprintk(1, "Loading raw decoders\n"); > + ir_raw_init(); > + dev->raw_init = true; > + } > rc = ir_raw_event_register(dev); > if (rc < 0) > goto out_input; > @@ -1176,8 +1182,6 @@ static int __init rc_core_init(void) > return rc; > } > > - /* Initialize/load the decoders/keymap code that will be used */ > - ir_raw_init(); > rc_map_register(&empty_map); > > return 0; Uhm. How does this ever actually work? The only place I see raw_init set to true is inside a conditional that requires it already be true. That's not going to fly. -- Jarod Wilson jarod@xxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html