diff options
author | David Härdeman <david@hardeman.nu> | 2010-04-15 23:46:25 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 17:57:46 +0200 |
commit | d46844300ccd99444d32e481751b6508c8c7834e (patch) | |
tree | fb624aaedbf6e50b1a5570bd67d96b5c0f557929 /drivers/media/IR/rc-map.c | |
parent | V4L/DVB: ir-core: remove ir-functions usage from dm1105 (diff) | |
download | linux-d46844300ccd99444d32e481751b6508c8c7834e.tar.xz linux-d46844300ccd99444d32e481751b6508c8c7834e.zip |
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: David Härdeman <david@hardeman.nu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/media/IR/rc-map.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/media/IR/rc-map.c b/drivers/media/IR/rc-map.c index 1a3f4b123a37..caf6a27b08c2 100644 --- a/drivers/media/IR/rc-map.c +++ b/drivers/media/IR/rc-map.c @@ -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); - -} |