-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V4L/DVB: IR: add empty lirc pseudo-keymap
Signed-off-by: Jarod Wilson <jarod@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
- Loading branch information
Jarod Wilson
authored and
Mauro Carvalho Chehab
committed
Aug 2, 2010
1 parent
30eb1be
commit 15f135d
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* rc-lirc.c - Empty dummy keytable, for use when its preferred to pass | ||
* all raw IR data to the lirc userspace decoder. | ||
* | ||
* 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/ir-core.h> | ||
|
||
static struct ir_scancode lirc[] = { | ||
{ }, | ||
}; | ||
|
||
static struct rc_keymap lirc_map = { | ||
.map = { | ||
.scan = lirc, | ||
.size = ARRAY_SIZE(lirc), | ||
.ir_type = IR_TYPE_LIRC, | ||
.name = RC_MAP_LIRC, | ||
} | ||
}; | ||
|
||
static int __init init_rc_map_lirc(void) | ||
{ | ||
return ir_register_map(&lirc_map); | ||
} | ||
|
||
static void __exit exit_rc_map_lirc(void) | ||
{ | ||
ir_unregister_map(&lirc_map); | ||
} | ||
|
||
module_init(init_rc_map_lirc) | ||
module_exit(exit_rc_map_lirc) | ||
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters