Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4684430 authored by David Härdeman's avatar David Härdeman Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB: ir-core: fix double spinlock init in drivers/media/IR/rc-map.c



Fix a double initialization of the same spinlock in drivers/media/IR/rc-map.c.

Signed-off-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 15100d89
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -295,8 +295,6 @@ static int __init ir_core_init(void)

	/* Initialize/load the decoders/keymap code that will be used */
	ir_raw_init();
	rc_map_init();


	return 0;
}
+0 −5
Original line number Diff line number Diff line
@@ -81,8 +81,3 @@ void ir_unregister_map(struct rc_keymap *map)
}
EXPORT_SYMBOL_GPL(ir_unregister_map);
void rc_map_init(void)
{
	spin_lock_init(&rc_map_lock);

}