| 9 | #include <stdio.h> |
| 10 | |
| 11 | typedef struct backlight_state { |
| 12 | uint8_t ports[0x100]; |
| 13 | uint8_t brightness; |
| 14 | float factor; |
| 15 | } backlight_state_t; |
| 16 | |
| 17 | extern backlight_state_t backlight; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected