2006-03-31 10:31:04 +00:00
|
|
|
/*
|
|
|
|
* LED Core
|
|
|
|
*
|
|
|
|
* Copyright 2005 Openedhand Ltd.
|
|
|
|
*
|
|
|
|
* Author: Richard Purdie <rpurdie@openedhand.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __LEDS_H_INCLUDED
|
|
|
|
#define __LEDS_H_INCLUDED
|
|
|
|
|
2007-12-31 23:09:44 +00:00
|
|
|
#include <linux/rwsem.h>
|
2006-03-31 10:31:04 +00:00
|
|
|
#include <linux/leds.h>
|
|
|
|
|
2008-03-09 20:54:37 +00:00
|
|
|
static inline int led_get_brightness(struct led_classdev *led_cdev)
|
|
|
|
{
|
|
|
|
return led_cdev->brightness;
|
|
|
|
}
|
|
|
|
|
2015-09-28 12:38:04 +00:00
|
|
|
void led_init_core(struct led_classdev *led_cdev);
|
2012-08-15 13:44:34 +00:00
|
|
|
void led_stop_software_blink(struct led_classdev *led_cdev);
|
2015-10-07 09:10:41 +00:00
|
|
|
void led_set_brightness_nopm(struct led_classdev *led_cdev,
|
|
|
|
enum led_brightness value);
|
|
|
|
void led_set_brightness_nosleep(struct led_classdev *led_cdev,
|
|
|
|
enum led_brightness value);
|
2012-08-15 13:44:34 +00:00
|
|
|
|
2007-12-31 23:09:44 +00:00
|
|
|
extern struct rw_semaphore leds_list_lock;
|
2006-03-31 10:31:04 +00:00
|
|
|
extern struct list_head leds_list;
|
2016-04-28 22:03:38 +00:00
|
|
|
extern struct list_head trigger_list;
|
2006-03-31 10:31:04 +00:00
|
|
|
|
|
|
|
#endif /* __LEDS_H_INCLUDED */
|