Lines Matching +full:90 +full:h
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/kernel_stat.h>
12 #include <linux/leds.h>
13 #include <linux/module.h>
14 #include <linux/panic_notifier.h>
15 #include <linux/reboot.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/timer.h>
19 #include "../leds.h"
103 * core systems. At this point it should reach 10 Hz with a 10/90 duty in led_activity_function()
104 * cycle (10ms ON, 90ms OFF). After this point, the blinking frequency in led_activity_function()
106 * the activity, up to the point where we have 90ms ON, 10ms OFF when in led_activity_function()
113 * (10ms ON, 90ms OFF) in led_activity_function()
116 * OFF_ms = 90 + (1 - usage/target) * 900 in led_activity_function()
119 * OFF_ms = 90 - (usage-target)/(100%-target) * 80 in led_activity_function()
144 90 - 80 * (usage - target) / (100 - target); /* OFF */ in led_activity_function()