LCOV - code coverage report
Current view: top level - drivers/media/rc/keymaps - rc-evga-indtube.c (source / functions) Hit Total Coverage
Test: Real Lines: 2 5 40.0 %
Date: 2020-10-17 15:46:16 Functions: 0 2 0.0 %
Legend: Neither, QEMU, Real, Both Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0+
       2                 :            : // evga-indtube.h - Keytable for evga_indtube Remote Controller
       3                 :            : //
       4                 :            : // keymap imported from ir-keymaps.c
       5                 :            : //
       6                 :            : // Copyright (c) 2010 by Mauro Carvalho Chehab
       7                 :            : 
       8                 :            : #include <media/rc-map.h>
       9                 :            : #include <linux/module.h>
      10                 :            : 
      11                 :            : /* EVGA inDtube
      12                 :            :    Devin Heitmueller <devin.heitmueller@gmail.com>
      13                 :            :  */
      14                 :            : 
      15                 :            : static struct rc_map_table evga_indtube[] = {
      16                 :            :         { 0x12, KEY_POWER},
      17                 :            :         { 0x02, KEY_MODE},      /* TV */
      18                 :            :         { 0x14, KEY_MUTE},
      19                 :            :         { 0x1a, KEY_CHANNELUP},
      20                 :            :         { 0x16, KEY_TV2},       /* PIP */
      21                 :            :         { 0x1d, KEY_VOLUMEUP},
      22                 :            :         { 0x05, KEY_CHANNELDOWN},
      23                 :            :         { 0x0f, KEY_PLAYPAUSE},
      24                 :            :         { 0x19, KEY_VOLUMEDOWN},
      25                 :            :         { 0x1c, KEY_REWIND},
      26                 :            :         { 0x0d, KEY_RECORD},
      27                 :            :         { 0x18, KEY_FORWARD},
      28                 :            :         { 0x1e, KEY_PREVIOUS},
      29                 :            :         { 0x1b, KEY_STOP},
      30                 :            :         { 0x1f, KEY_NEXT},
      31                 :            :         { 0x13, KEY_CAMERA},
      32                 :            : };
      33                 :            : 
      34                 :            : static struct rc_map_list evga_indtube_map = {
      35                 :            :         .map = {
      36                 :            :                 .scan     = evga_indtube,
      37                 :            :                 .size     = ARRAY_SIZE(evga_indtube),
      38                 :            :                 .rc_proto = RC_PROTO_UNKNOWN,   /* Legacy IR type */
      39                 :            :                 .name     = RC_MAP_EVGA_INDTUBE,
      40                 :            :         }
      41                 :            : };
      42                 :            : 
      43                 :          3 : static int __init init_rc_map_evga_indtube(void)
      44                 :            : {
      45                 :          3 :         return rc_map_register(&evga_indtube_map);
      46                 :            : }
      47                 :            : 
      48                 :          0 : static void __exit exit_rc_map_evga_indtube(void)
      49                 :            : {
      50                 :          0 :         rc_map_unregister(&evga_indtube_map);
      51                 :          0 : }
      52                 :            : 
      53                 :            : module_init(init_rc_map_evga_indtube)
      54                 :            : module_exit(exit_rc_map_evga_indtube)
      55                 :            : 
      56                 :            : MODULE_LICENSE("GPL");
      57                 :            : MODULE_AUTHOR("Mauro Carvalho Chehab");
    

Generated by: LCOV version 1.14