leds.h 1.6 KB
Newer Older
R
Richard Purdie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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

16
#include <linux/device.h>
17
#include <linux/rwsem.h>
R
Richard Purdie 已提交
18 19
#include <linux/leds.h>

20
static inline void __led_set_brightness(struct led_classdev *led_cdev,
R
Richard Purdie 已提交
21 22
					enum led_brightness value)
{
23 24
	if (value > led_cdev->max_brightness)
		value = led_cdev->max_brightness;
R
Richard Purdie 已提交
25 26 27 28 29
	led_cdev->brightness = value;
	if (!(led_cdev->flags & LED_SUSPENDED))
		led_cdev->brightness_set(led_cdev, value);
}

30 31 32 33 34
static inline int led_get_brightness(struct led_classdev *led_cdev)
{
	return led_cdev->brightness;
}

35
extern struct rw_semaphore leds_list_lock;
R
Richard Purdie 已提交
36 37
extern struct list_head leds_list;

38 39 40 41
#ifdef CONFIG_LEDS_TRIGGERS
void led_trigger_set_default(struct led_classdev *led_cdev);
void led_trigger_set(struct led_classdev *led_cdev,
			struct led_trigger *trigger);
42
void led_trigger_remove(struct led_classdev *led_cdev);
43 44 45 46 47 48

static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
{
	return led_cdev->trigger_data;
}

49
#else
50 51 52
#define led_trigger_set_default(x) do {} while (0)
#define led_trigger_set(x, y) do {} while (0)
#define led_trigger_remove(x) do {} while (0)
53
#define led_get_trigger_data(x) (NULL)
54 55
#endif

56 57 58 59
ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
			const char *buf, size_t count);
ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
			char *buf);
60

R
Richard Purdie 已提交
61
#endif	/* __LEDS_H_INCLUDED */