aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/common')
-rw-r--r--drivers/media/common/ir-functions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/common/ir-functions.c b/drivers/media/common/ir-functions.c
index abd4791acb0..fc2d8941459 100644
--- a/drivers/media/common/ir-functions.c
+++ b/drivers/media/common/ir-functions.c
@@ -275,7 +275,7 @@ EXPORT_SYMBOL_GPL(ir_decode_biphase);
275 * saa7134 */ 275 * saa7134 */
276 276
277/* decode raw bit pattern to RC5 code */ 277/* decode raw bit pattern to RC5 code */
278static u32 ir_rc5_decode(unsigned int code) 278u32 ir_rc5_decode(unsigned int code)
279{ 279{
280 unsigned int org_code = code; 280 unsigned int org_code = code;
281 unsigned int pair; 281 unsigned int pair;
@@ -304,6 +304,7 @@ static u32 ir_rc5_decode(unsigned int code)
304 RC5_TOGGLE(rc5), RC5_ADDR(rc5), RC5_INSTR(rc5)); 304 RC5_TOGGLE(rc5), RC5_ADDR(rc5), RC5_INSTR(rc5));
305 return rc5; 305 return rc5;
306} 306}
307EXPORT_SYMBOL_GPL(ir_rc5_decode);
307 308
308void ir_rc5_timer_end(unsigned long data) 309void ir_rc5_timer_end(unsigned long data)
309{ 310{