Path: blob/master/drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.c
15162 views
/* ati-tv-wonder-hd-600.h - Keytable for ati_tv_wonder_hd_600 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>1314/* ATI TV Wonder HD 600 USB15Devin Heitmueller <[email protected]>16*/1718static struct rc_map_table ati_tv_wonder_hd_600[] = {19{ 0x00, KEY_RECORD}, /* Row 1 */20{ 0x01, KEY_PLAYPAUSE},21{ 0x02, KEY_STOP},22{ 0x03, KEY_POWER},23{ 0x04, KEY_PREVIOUS}, /* Row 2 */24{ 0x05, KEY_REWIND},25{ 0x06, KEY_FORWARD},26{ 0x07, KEY_NEXT},27{ 0x08, KEY_EPG}, /* Row 3 */28{ 0x09, KEY_HOME},29{ 0x0a, KEY_MENU},30{ 0x0b, KEY_CHANNELUP},31{ 0x0c, KEY_BACK}, /* Row 4 */32{ 0x0d, KEY_UP},33{ 0x0e, KEY_INFO},34{ 0x0f, KEY_CHANNELDOWN},35{ 0x10, KEY_LEFT}, /* Row 5 */36{ 0x11, KEY_SELECT},37{ 0x12, KEY_RIGHT},38{ 0x13, KEY_VOLUMEUP},39{ 0x14, KEY_LAST}, /* Row 6 */40{ 0x15, KEY_DOWN},41{ 0x16, KEY_MUTE},42{ 0x17, KEY_VOLUMEDOWN},43};4445static struct rc_map_list ati_tv_wonder_hd_600_map = {46.map = {47.scan = ati_tv_wonder_hd_600,48.size = ARRAY_SIZE(ati_tv_wonder_hd_600),49.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */50.name = RC_MAP_ATI_TV_WONDER_HD_600,51}52};5354static int __init init_rc_map_ati_tv_wonder_hd_600(void)55{56return rc_map_register(&ati_tv_wonder_hd_600_map);57}5859static void __exit exit_rc_map_ati_tv_wonder_hd_600(void)60{61rc_map_unregister(&ati_tv_wonder_hd_600_map);62}6364module_init(init_rc_map_ati_tv_wonder_hd_600)65module_exit(exit_rc_map_ati_tv_wonder_hd_600)6667MODULE_LICENSE("GPL");68MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");697071