summaryrefslogtreecommitdiffstats
path: root/drivers/media/IR/rc-map.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-04-08 19:04:06 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 12:57:14 -0300
commit5fa2989f78a381ccc1cde219f0a3da942d6c1680 (patch)
tree59447ef80aba0af86d26f49133b59358a0da8c3a /drivers/media/IR/rc-map.c
parentdab7e3106ddd6cbc3b55301228407b9d17ce7773 (diff)
V4L/DVB: ir-core: Remove warining noise if decoders compiled builtin
drivers/media/IR/ir-raw-event.c:55: warning: ‘wq_load’ defined but not used drivers/media/IR/ir-raw-event.c:222: warning: ‘init_decoders’ defined but not used drivers/media/IR/rc-map.c: In function ‘get_rc_map’: drivers/media/IR/rc-map.c:40: warning: unused variable ‘rc’ Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/IR/rc-map.c')
-rw-r--r--drivers/media/IR/rc-map.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/IR/rc-map.c b/drivers/media/IR/rc-map.c
index ff185c054267..1a3f4b123a37 100644
--- a/drivers/media/IR/rc-map.c
+++ b/drivers/media/IR/rc-map.c
@@ -37,14 +37,13 @@ static struct rc_keymap *seek_rc_map(const char *name)
struct ir_scancode_table *get_rc_map(const char *name)
{
- int rc = 0;
struct rc_keymap *map;
map = seek_rc_map(name);
#ifdef MODULE
if (!map) {
- rc = request_module(name);
+ int rc = request_module(name);
if (rc < 0) {
printk(KERN_ERR "Couldn't load IR keymap %s\n", name);
return NULL;