summaryrefslogtreecommitdiffstats
path: root/samples
Commit message (Expand)AuthorAgeFilesLines
* kobject: should use kobject_put() in kset-exampleLi Zefan2008-07-221-1/+1
* Firmware: fix typo in example codeGreg Kroah-Hartman2008-07-221-1/+1
* samples: use non-racy method for /proc/marker-example creationDenis V. Lunev2008-04-291-4/+2Star
* Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/juh...Linus Torvalds2008-04-221-0/+1
|\
* | firmware: clean up samples for coding style issuesGreg Kroah-Hartman2008-04-202-38/+40
* | firmware: move firmware_class from Documentation/ to samples/Randy Dunlap2008-04-202-0/+322
|/
* Kprobes: move kprobe examples to samples/Ananth N Mavinakayanahalli2008-03-056-1/+282
* Linux Kernel Markers: support multiple probesMathieu Desnoyers2008-02-141-16/+9Star
* kobject: add sample code for how to use ksets/ktypes/kobjectsGreg Kroah-Hartman2008-01-252-1/+279
* kobject: add sample code for how to use kobjects in a simple manner.Greg Kroah-Hartman2008-01-254-1/+149
* Linux Kernel Markers: fix samples to follow format string standardMathieu Desnoyers2007-11-152-2/+3
* Linux Kernel Markers - SamplesMathieu Desnoyers2007-10-195-0/+164
* markers: Add samples subdirMathieu Desnoyers2007-10-191-0/+11
an class="hl opt">{ 0x78, KEY_9 }, { 0x10, KEY_L }, /* Live */ { 0x08, KEY_TIME }, /* Time Shift */ { 0x18, KEY_PLAYPAUSE }, /* Play */ { 0x24, KEY_ENTER }, /* 11 */ { 0x64, KEY_ESC }, /* 12 */ { 0x04, KEY_M }, /* Multi */ { 0x54, KEY_VIDEO }, { 0x34, KEY_CHANNELUP }, { 0x74, KEY_VOLUMEUP }, { 0x14, KEY_MUTE }, { 0x4c, KEY_VCR }, /* SVIDEO */ { 0x2c, KEY_CHANNELDOWN }, { 0x6c, KEY_VOLUMEDOWN }, { 0x0c, KEY_ZOOM }, { 0x5c, KEY_PAUSE }, { 0x3c, KEY_RED }, /* || (red) */ { 0x7c, KEY_RECORD }, /* recording */ { 0x1c, KEY_STOP }, { 0x41, KEY_REWIND }, /* backward << */ { 0x21, KEY_PLAY }, { 0x61, KEY_FASTFORWARD }, /* forward >> */ { 0x01, KEY_NEXT }, /* skip >| */ }; static struct rc_map_list iodata_bctv7e_map = { .map = { .scan = iodata_bctv7e, .size = ARRAY_SIZE(iodata_bctv7e), .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */ .name = RC_MAP_IODATA_BCTV7E, } }; static int __init init_rc_map_iodata_bctv7e(void) { return rc_map_register(&iodata_bctv7e_map); } static void __exit exit_rc_map_iodata_bctv7e(void) { rc_map_unregister(&iodata_bctv7e_map); } module_init(init_rc_map_iodata_bctv7e) module_exit(exit_rc_map_iodata_bctv7e) MODULE_LICENSE("GPL"); MODULE_AUTHOR("Mauro Carvalho Chehab");