Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

V4L/DVB (8394): ir-common: CodingStyle fix: move EXPORT_SYMBOL_GPL to their proper places

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>

+8 -17
+8 -17
drivers/media/common/ir-functions.c
··· 77 77 if (repeat) 78 78 set_bit(EV_REP, dev->evbit); 79 79 } 80 + EXPORT_SYMBOL_GPL(ir_input_init); 80 81 81 82 void ir_input_nokey(struct input_dev *dev, struct ir_input_state *ir) 82 83 { ··· 86 85 ir_input_key_event(dev,ir); 87 86 } 88 87 } 88 + EXPORT_SYMBOL_GPL(ir_input_nokey); 89 89 90 90 void ir_input_keydown(struct input_dev *dev, struct ir_input_state *ir, 91 91 u32 ir_key, u32 ir_raw) ··· 105 103 ir_input_key_event(dev,ir); 106 104 } 107 105 } 106 + EXPORT_SYMBOL_GPL(ir_input_keydown); 108 107 109 108 /* -------------------------------------------------------------------------- */ 110 109 /* extract mask bits out of data and pack them into the result */ ··· 124 121 125 122 return value; 126 123 } 124 + EXPORT_SYMBOL_GPL(ir_extract_bits); 127 125 128 126 static int inline getbit(u32 *samples, int bit) 129 127 { ··· 149 145 printk("\n"); 150 146 return 0; 151 147 } 148 + EXPORT_SYMBOL_GPL(ir_dump_samples); 152 149 153 150 /* decode raw samples, pulse distance coding used by NEC remotes */ 154 151 int ir_decode_pulsedistance(u32 *samples, int count, int low, int high) ··· 216 211 217 212 return value; 218 213 } 214 + EXPORT_SYMBOL_GPL(ir_decode_pulsedistance); 219 215 220 216 /* decode raw samples, biphase coding, used by rc5 for example */ 221 217 int ir_decode_biphase(u32 *samples, int count, int low, int high) ··· 258 252 } 259 253 return value; 260 254 } 255 + EXPORT_SYMBOL_GPL(ir_decode_biphase); 261 256 262 257 /* RC5 decoding stuff, moved from bttv-input.c to share it with 263 258 * saa7134 */ ··· 359 352 } 360 353 } 361 354 } 355 + EXPORT_SYMBOL_GPL(ir_rc5_timer_end); 362 356 363 357 void ir_rc5_timer_keyup(unsigned long data) 364 358 { ··· 368 360 dprintk(1, "ir-common: key released\n"); 369 361 ir_input_nokey(ir->dev, &ir->ir); 370 362 } 371 - 372 - EXPORT_SYMBOL_GPL(ir_input_init); 373 - EXPORT_SYMBOL_GPL(ir_input_nokey); 374 - EXPORT_SYMBOL_GPL(ir_input_keydown); 375 - 376 - EXPORT_SYMBOL_GPL(ir_extract_bits); 377 - EXPORT_SYMBOL_GPL(ir_dump_samples); 378 - EXPORT_SYMBOL_GPL(ir_decode_biphase); 379 - EXPORT_SYMBOL_GPL(ir_decode_pulsedistance); 380 - 381 - EXPORT_SYMBOL_GPL(ir_rc5_timer_end); 382 363 EXPORT_SYMBOL_GPL(ir_rc5_timer_keyup); 383 - 384 - /* 385 - * Local variables: 386 - * c-basic-offset: 8 387 - * End: 388 - */