iommu/amd: Introduce bitmap_lock in struct aperture_range
[linux/fpc-iii.git] / drivers / leds / leds.h
blob4238fbc31d3587923f95a61f5ba2b33e5cf74d92
1 /*
2 * LED Core
4 * Copyright 2005 Openedhand Ltd.
6 * Author: Richard Purdie <rpurdie@openedhand.com>
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.
13 #ifndef __LEDS_H_INCLUDED
14 #define __LEDS_H_INCLUDED
16 #include <linux/rwsem.h>
17 #include <linux/leds.h>
19 static inline void led_set_brightness_async(struct led_classdev *led_cdev,
20 enum led_brightness value)
22 value = min(value, led_cdev->max_brightness);
23 led_cdev->brightness = value;
25 if (!(led_cdev->flags & LED_SUSPENDED))
26 led_cdev->brightness_set(led_cdev, value);
29 static inline int led_set_brightness_sync(struct led_classdev *led_cdev,
30 enum led_brightness value)
32 int ret = 0;
34 led_cdev->brightness = min(value, led_cdev->max_brightness);
36 if (!(led_cdev->flags & LED_SUSPENDED))
37 ret = led_cdev->brightness_set_sync(led_cdev,
38 led_cdev->brightness);
39 return ret;
42 static inline int led_get_brightness(struct led_classdev *led_cdev)
44 return led_cdev->brightness;
47 void led_init_core(struct led_classdev *led_cdev);
48 void led_stop_software_blink(struct led_classdev *led_cdev);
50 extern struct rw_semaphore leds_list_lock;
51 extern struct list_head leds_list;
53 #endif /* __LEDS_H_INCLUDED */