Path: blob/master/drivers/media/rc/keymaps/rc-flydvb.c
15112 views
/* flydvb.h - Keytable for flydvb 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 flydvb[] = {15{ 0x01, KEY_ZOOM }, /* Full Screen */16{ 0x00, KEY_POWER }, /* Power */1718{ 0x03, KEY_1 },19{ 0x04, KEY_2 },20{ 0x05, KEY_3 },21{ 0x07, KEY_4 },22{ 0x08, KEY_5 },23{ 0x09, KEY_6 },24{ 0x0b, KEY_7 },25{ 0x0c, KEY_8 },26{ 0x0d, KEY_9 },27{ 0x06, KEY_AGAIN }, /* Recall */28{ 0x0f, KEY_0 },29{ 0x10, KEY_MUTE }, /* Mute */30{ 0x02, KEY_RADIO }, /* TV/Radio */31{ 0x1b, KEY_LANGUAGE }, /* SAP (Second Audio Program) */3233{ 0x14, KEY_VOLUMEUP }, /* VOL+ */34{ 0x17, KEY_VOLUMEDOWN }, /* VOL- */35{ 0x12, KEY_CHANNELUP }, /* CH+ */36{ 0x13, KEY_CHANNELDOWN }, /* CH- */37{ 0x1d, KEY_ENTER }, /* Enter */3839{ 0x1a, KEY_TV2 }, /* PIP */40{ 0x18, KEY_VIDEO }, /* Source */4142{ 0x1e, KEY_RECORD }, /* Record/Pause */43{ 0x15, KEY_ANGLE }, /* Swap (no label on key) */44{ 0x1c, KEY_PAUSE }, /* Timeshift/Pause */45{ 0x19, KEY_BACK }, /* Rewind << */46{ 0x0a, KEY_PLAYPAUSE }, /* Play/Pause */47{ 0x1f, KEY_FORWARD }, /* Forward >> */48{ 0x16, KEY_PREVIOUS }, /* Back |<< */49{ 0x11, KEY_STOP }, /* Stop */50{ 0x0e, KEY_NEXT }, /* End >>| */51};5253static struct rc_map_list flydvb_map = {54.map = {55.scan = flydvb,56.size = ARRAY_SIZE(flydvb),57.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */58.name = RC_MAP_FLYDVB,59}60};6162static int __init init_rc_map_flydvb(void)63{64return rc_map_register(&flydvb_map);65}6667static void __exit exit_rc_map_flydvb(void)68{69rc_map_unregister(&flydvb_map);70}7172module_init(init_rc_map_flydvb)73module_exit(exit_rc_map_flydvb)7475MODULE_LICENSE("GPL");76MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");777879