mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
7a707b8920
A pending cleanup will mean that module.h won't be implicitly everywhere anymore. Make sure the modular drivers in clocksource are actually calling out for <module.h> explicitly in advance. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
99 lines
2.7 KiB
C
99 lines
2.7 KiB
C
/* avermedia-cardbus.h - Keytable for avermedia_cardbus Remote Controller
|
|
*
|
|
* keymap imported from ir-keymaps.c
|
|
*
|
|
* Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#include <media/rc-map.h>
|
|
#include <linux/module.h>
|
|
|
|
/* Oldrich Jedlicka <oldium.pro@seznam.cz> */
|
|
|
|
static struct rc_map_table avermedia_cardbus[] = {
|
|
{ 0x00, KEY_POWER },
|
|
{ 0x01, KEY_TUNER }, /* TV/FM */
|
|
{ 0x03, KEY_TEXT }, /* Teletext */
|
|
{ 0x04, KEY_EPG },
|
|
{ 0x05, KEY_1 },
|
|
{ 0x06, KEY_2 },
|
|
{ 0x07, KEY_3 },
|
|
{ 0x08, KEY_AUDIO },
|
|
{ 0x09, KEY_4 },
|
|
{ 0x0a, KEY_5 },
|
|
{ 0x0b, KEY_6 },
|
|
{ 0x0c, KEY_ZOOM }, /* Full screen */
|
|
{ 0x0d, KEY_7 },
|
|
{ 0x0e, KEY_8 },
|
|
{ 0x0f, KEY_9 },
|
|
{ 0x10, KEY_PAGEUP }, /* 16-CH PREV */
|
|
{ 0x11, KEY_0 },
|
|
{ 0x12, KEY_INFO },
|
|
{ 0x13, KEY_AGAIN }, /* CH RTN - channel return */
|
|
{ 0x14, KEY_MUTE },
|
|
{ 0x15, KEY_EDIT }, /* Autoscan */
|
|
{ 0x17, KEY_SAVE }, /* Screenshot */
|
|
{ 0x18, KEY_PLAYPAUSE },
|
|
{ 0x19, KEY_RECORD },
|
|
{ 0x1a, KEY_PLAY },
|
|
{ 0x1b, KEY_STOP },
|
|
{ 0x1c, KEY_FASTFORWARD },
|
|
{ 0x1d, KEY_REWIND },
|
|
{ 0x1e, KEY_VOLUMEDOWN },
|
|
{ 0x1f, KEY_VOLUMEUP },
|
|
{ 0x22, KEY_SLEEP }, /* Sleep */
|
|
{ 0x23, KEY_ZOOM }, /* Aspect */
|
|
{ 0x26, KEY_SCREEN }, /* Pos */
|
|
{ 0x27, KEY_ANGLE }, /* Size */
|
|
{ 0x28, KEY_SELECT }, /* Select */
|
|
{ 0x29, KEY_BLUE }, /* Blue/Picture */
|
|
{ 0x2a, KEY_BACKSPACE }, /* Back */
|
|
{ 0x2b, KEY_VIDEO }, /* PIP (Picture-in-picture) */
|
|
{ 0x2c, KEY_DOWN },
|
|
{ 0x2e, KEY_DOT },
|
|
{ 0x2f, KEY_TV }, /* Live TV */
|
|
{ 0x32, KEY_LEFT },
|
|
{ 0x33, KEY_CLEAR }, /* Clear */
|
|
{ 0x35, KEY_RED }, /* Red/TV */
|
|
{ 0x36, KEY_UP },
|
|
{ 0x37, KEY_HOME }, /* Home */
|
|
{ 0x39, KEY_GREEN }, /* Green/Video */
|
|
{ 0x3d, KEY_YELLOW }, /* Yellow/Music */
|
|
{ 0x3e, KEY_OK }, /* Ok */
|
|
{ 0x3f, KEY_RIGHT },
|
|
{ 0x40, KEY_NEXT }, /* Next */
|
|
{ 0x41, KEY_PREVIOUS }, /* Previous */
|
|
{ 0x42, KEY_CHANNELDOWN }, /* Channel down */
|
|
{ 0x43, KEY_CHANNELUP }, /* Channel up */
|
|
};
|
|
|
|
static struct rc_map_list avermedia_cardbus_map = {
|
|
.map = {
|
|
.scan = avermedia_cardbus,
|
|
.size = ARRAY_SIZE(avermedia_cardbus),
|
|
.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
|
|
.name = RC_MAP_AVERMEDIA_CARDBUS,
|
|
}
|
|
};
|
|
|
|
static int __init init_rc_map_avermedia_cardbus(void)
|
|
{
|
|
return rc_map_register(&avermedia_cardbus_map);
|
|
}
|
|
|
|
static void __exit exit_rc_map_avermedia_cardbus(void)
|
|
{
|
|
rc_map_unregister(&avermedia_cardbus_map);
|
|
}
|
|
|
|
module_init(init_rc_map_avermedia_cardbus)
|
|
module_exit(exit_rc_map_avermedia_cardbus)
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
|