different set of codes. Just add both to the table. Probably needs
extending for the latest Apple remote, but I don't have one of those.
Signed-off-by: Jarod Wilson <jarod@redhat.com>
---
drivers/media/IR/keymaps/Makefile | 1 +
drivers/media/IR/keymaps/rc-nec-apple.c | 51 +++++++++++++++++++++++++++++++
include/media/rc-map.h | 1 +
3 files changed, 53 insertions(+), 0 deletions(-)
create mode 100644 drivers/media/IR/keymaps/rc-nec-apple.c
@@ -53,6 +53,7 @@ obj-$(CONFIG_RC_MAP) += rc-adstech-dvb-t-pci.o \
rc-msi-tvanywhere.o \
rc-msi-tvanywhere-plus.o \
rc-nebula.o \
+ rc-nec-apple.o \
rc-nec-terratec-cinergy-xs.o \
rc-norwood.o \
rc-npgtech.o \
new file mode 100644
@@ -0,0 +1,51 @@
+/* rc-nec-apple.c - Keytable for Apple Remote Controls
+ *
+ * Copyright (c) 2010 by Jarod Wilson <jarod@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>
+
+static struct ir_scancode nec_apple[] = {
+ { 0xee8702, KEY_MENU},
+ { 0xee8703, KEY_MENU},
+ { 0xee8704, KEY_PLAYPAUSE},
+ { 0xee8705, KEY_PLAYPAUSE},
+ { 0xee8706, KEY_FORWARD},
+ { 0xee8707, KEY_FORWARD},
+ { 0xee8708, KEY_BACK},
+ { 0xee8709, KEY_BACK},
+ { 0xee870a, KEY_VOLUMEUP},
+ { 0xee870b, KEY_VOLUMEUP},
+ { 0xee870c, KEY_VOLUMEDOWN},
+ { 0xee870d, KEY_VOLUMEDOWN},
+};
+
+static struct rc_keymap nec_apple_map = {
+ .map = {
+ .scan = nec_apple,
+ .size = ARRAY_SIZE(nec_apple),
+ .ir_type = IR_TYPE_NEC,
+ .name = RC_MAP_NEC_APPLE,
+ }
+};
+
+static int __init init_rc_map_nec_apple(void)
+{
+ return ir_register_map(&nec_apple_map);
+}
+
+static void __exit exit_rc_map_nec_apple(void)
+{
+ ir_unregister_map(&nec_apple_map);
+}
+
+module_init(init_rc_map_nec_apple)
+module_exit(exit_rc_map_nec_apple)
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>");
@@ -110,6 +110,7 @@ void rc_map_init(void);
#define RC_MAP_MSI_TVANYWHERE_PLUS "rc-msi-tvanywhere-plus"
#define RC_MAP_MSI_TVANYWHERE "rc-msi-tvanywhere"
#define RC_MAP_NEBULA "rc-nebula"
+#define RC_MAP_NEC_APPLE "rc-nec-apple"
#define RC_MAP_NEC_TERRATEC_CINERGY_XS "rc-nec-terratec-cinergy-xs"
#define RC_MAP_NORWOOD "rc-norwood"
#define RC_MAP_NPGTECH "rc-npgtech"