Commit 56a8b9f1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] tm6000: Fix a warning at tm6000_ir_int_start()

drivers/media/video/tm6000/tm6000-input.c: In function ‘tm6000_ir_int_start’:
drivers/media/video/tm6000/tm6000-input.c:381:3: warning: ‘return’ with no value, in function returning non-void [-Wreturn-type]
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent a16fa71d
......@@ -378,7 +378,7 @@ int tm6000_ir_int_start(struct tm6000_core *dev)
struct tm6000_IR *ir = dev->ir;
if (!ir)
return;
return 0;
return __tm6000_ir_int_start(ir->rc);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment