diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-11-17 11:53:11 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:50 -0500 |
commit | ca86674b8a93ea11c4bb6f4dd0113b1adf1fa841 (patch) | |
tree | 1f51d1aafa28121856b033516a00998a632e2864 /drivers/media/video/em28xx | |
parent | 6bda96447cef24fbf97a798b1ea664224d5fdc25 (diff) |
[media] Rename all public generic RC functions from ir_ to rc_
Those functions are not InfraRed specific. So, rename them to properly
reflect it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/em28xx')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx-input.c b/drivers/media/video/em28xx/em28xx-input.c index b7d3999f0417..e32eb38564e6 100644 --- a/drivers/media/video/em28xx/em28xx-input.c +++ b/drivers/media/video/em28xx/em28xx-input.c | |||
@@ -297,12 +297,12 @@ static void em28xx_ir_handle_key(struct em28xx_IR *ir) | |||
297 | poll_result.toggle_bit, poll_result.read_count, | 297 | poll_result.toggle_bit, poll_result.read_count, |
298 | poll_result.rc_address, poll_result.rc_data[0]); | 298 | poll_result.rc_address, poll_result.rc_data[0]); |
299 | if (ir->full_code) | 299 | if (ir->full_code) |
300 | ir_keydown(ir->rc, | 300 | rc_keydown(ir->rc, |
301 | poll_result.rc_address << 8 | | 301 | poll_result.rc_address << 8 | |
302 | poll_result.rc_data[0], | 302 | poll_result.rc_data[0], |
303 | poll_result.toggle_bit); | 303 | poll_result.toggle_bit); |
304 | else | 304 | else |
305 | ir_keydown(ir->rc, | 305 | rc_keydown(ir->rc, |
306 | poll_result.rc_data[0], | 306 | poll_result.rc_data[0], |
307 | poll_result.toggle_bit); | 307 | poll_result.toggle_bit); |
308 | 308 | ||