1 /* rc-technisat-ts35.c - Keytable for TechniSat TS35 remote
3 * Copyright (c) 2013 by Jan Klötzke <jan@kloetzke.net>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
11 #include <media/rc-map.h>
12 #include <linux/module.h>
14 static struct rc_map_table technisat_ts35
[] = {
54 static struct rc_map_list technisat_ts35_map
= {
56 .scan
= technisat_ts35
,
57 .size
= ARRAY_SIZE(technisat_ts35
),
58 .rc_proto
= RC_PROTO_UNKNOWN
,
59 .name
= RC_MAP_TECHNISAT_TS35
,
63 static int __init
init_rc_map(void)
65 return rc_map_register(&technisat_ts35_map
);
68 static void __exit
exit_rc_map(void)
70 rc_map_unregister(&technisat_ts35_map
);
73 module_init(init_rc_map
)
74 module_exit(exit_rc_map
)
76 MODULE_LICENSE("GPL");