LCOV - code coverage report
Current view: top level - drivers/leds/trigger - ledtrig-input.c (source / functions) Hit Total Coverage
Test: Real Lines: 6 13 46.2 %
Date: 2020-10-17 15:46:16 Functions: 0 4 0.0 %
Legend: Neither, QEMU, Real, Both Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Set LED GPIO to Input "Trigger"
       3                 :            :  *
       4                 :            :  * Copyright 2015 Phil Elwell <phil@raspberrypi.org>
       5                 :            :  *
       6                 :            :  * Based on Nick Forbes's ledtrig-default-on.c.
       7                 :            :  *
       8                 :            :  * This program is free software; you can redistribute it and/or modify
       9                 :            :  * it under the terms of the GNU General Public License version 2 as
      10                 :            :  * published by the Free Software Foundation.
      11                 :            :  *
      12                 :            :  */
      13                 :            : 
      14                 :            : #include <linux/module.h>
      15                 :            : #include <linux/kernel.h>
      16                 :            : #include <linux/init.h>
      17                 :            : #include <linux/leds.h>
      18                 :            : #include <linux/gpio.h>
      19                 :            : #include "../leds.h"
      20                 :            : 
      21                 :          3 : static int input_trig_activate(struct led_classdev *led_cdev)
      22                 :            : {
      23                 :          3 :         led_cdev->flags |= SET_GPIO_INPUT;
      24                 :          3 :         led_set_brightness(led_cdev, 0);
      25                 :          3 :         return 0;
      26                 :            : }
      27                 :            : 
      28                 :          0 : static void input_trig_deactivate(struct led_classdev *led_cdev)
      29                 :            : {
      30                 :          0 :         led_cdev->flags |= SET_GPIO_OUTPUT;
      31                 :          0 :         led_set_brightness(led_cdev, 0);
      32                 :          0 : }
      33                 :            : 
      34                 :            : static struct led_trigger input_led_trigger = {
      35                 :            :         .name     = "input",
      36                 :            :         .activate = input_trig_activate,
      37                 :            :         .deactivate = input_trig_deactivate,
      38                 :            : };
      39                 :            : 
      40                 :          3 : static int __init input_trig_init(void)
      41                 :            : {
      42                 :          3 :         return led_trigger_register(&input_led_trigger);
      43                 :            : }
      44                 :            : 
      45                 :          0 : static void __exit input_trig_exit(void)
      46                 :            : {
      47                 :          0 :         led_trigger_unregister(&input_led_trigger);
      48                 :          0 : }
      49                 :            : 
      50                 :            : module_init(input_trig_init);
      51                 :            : module_exit(input_trig_exit);
      52                 :            : 
      53                 :            : MODULE_AUTHOR("Phil Elwell <phil@raspberrypi.org>");
      54                 :            : MODULE_DESCRIPTION("Set LED GPIO to Input \"trigger\"");
      55                 :            : MODULE_LICENSE("GPL");
    

Generated by: LCOV version 1.14