Skip to content

Commit

Permalink
V4L/DVB (7590): ir-common: Adds 3 missing IR keys for FlyVIdeo2000
Browse files Browse the repository at this point in the history
The patch extends the default keymap of FlyVIdeo2000 IR remote control so that
this remote may also serve movie & music players in a better way.

I bought a SAA7130 TV tuner with a remote control having 3 additional button
as the default layout, exactly as:

1) labeled "<<<" : key code 0x19, may be used as "backward"in MPlayer,XMMS etc

2) labeled ">>>" : key code 0x1f, may be used as "forward"...

3) not labeled : key code 0x0a, may be used as "pause"...

Once have added these code definitions to the kernel, me got all these
operations available for viewing movies & listening music.

Signed-off-by : Ivan Bobyr <brefi@yandex.ru>

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Ivan Bobyr authored and Mauro Carvalho Chehab committed Apr 24, 2008
1 parent 1d3104b commit 9e05c0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/media/common/ir-keymaps.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,11 @@ IR_KEYTAB_TYPE ir_codes_flyvideo[IR_KEYTAB_SIZE] = {
[ 0x12 ] = KEY_CHANNELUP, // Channel +
[ 0x13 ] = KEY_CHANNELDOWN, // Channel -
[ 0x06 ] = KEY_AGAIN, // Recall
[ 0x10 ] = KEY_ENTER, // Enter
[ 0x10 ] = KEY_ENTER, // Enter

[ 0x19 ] = KEY_BACK, // Rewind ( <<< )
[ 0x1f ] = KEY_FORWARD, // Forward ( >>> )
[ 0x0a ] = KEY_ANGLE, // (no label, may be used as the PAUSE button)
};

EXPORT_SYMBOL_GPL(ir_codes_flyvideo);
Expand Down

0 comments on commit 9e05c0f

Please sign in to comment.