Path: blob/master/drivers/media/rc/keymaps/rc-flyvideo.c
15112 views
/* flyvideo.h - Keytable for flyvideo Remote Controller1*2* keymap imported from ir-keymaps.c3*4* Copyright (c) 2010 by Mauro Carvalho Chehab <[email protected]>5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*/1112#include <media/rc-map.h>1314static struct rc_map_table flyvideo[] = {15{ 0x0f, KEY_0 },16{ 0x03, KEY_1 },17{ 0x04, KEY_2 },18{ 0x05, KEY_3 },19{ 0x07, KEY_4 },20{ 0x08, KEY_5 },21{ 0x09, KEY_6 },22{ 0x0b, KEY_7 },23{ 0x0c, KEY_8 },24{ 0x0d, KEY_9 },2526{ 0x0e, KEY_MODE }, /* Air/Cable */27{ 0x11, KEY_VIDEO }, /* Video */28{ 0x15, KEY_AUDIO }, /* Audio */29{ 0x00, KEY_POWER }, /* Power */30{ 0x18, KEY_TUNER }, /* AV Source */31{ 0x02, KEY_ZOOM }, /* Fullscreen */32{ 0x1a, KEY_LANGUAGE }, /* Stereo */33{ 0x1b, KEY_MUTE }, /* Mute */34{ 0x14, KEY_VOLUMEUP }, /* Volume + */35{ 0x17, KEY_VOLUMEDOWN },/* Volume - */36{ 0x12, KEY_CHANNELUP },/* Channel + */37{ 0x13, KEY_CHANNELDOWN },/* Channel - */38{ 0x06, KEY_AGAIN }, /* Recall */39{ 0x10, KEY_ENTER }, /* Enter */4041{ 0x19, KEY_BACK }, /* Rewind ( <<< ) */42{ 0x1f, KEY_FORWARD }, /* Forward ( >>> ) */43{ 0x0a, KEY_ANGLE }, /* no label, may be used as the PAUSE button */44};4546static struct rc_map_list flyvideo_map = {47.map = {48.scan = flyvideo,49.size = ARRAY_SIZE(flyvideo),50.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */51.name = RC_MAP_FLYVIDEO,52}53};5455static int __init init_rc_map_flyvideo(void)56{57return rc_map_register(&flyvideo_map);58}5960static void __exit exit_rc_map_flyvideo(void)61{62rc_map_unregister(&flyvideo_map);63}6465module_init(init_rc_map_flyvideo)66module_exit(exit_rc_map_flyvideo)6768MODULE_LICENSE("GPL");69MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");707172