]>
Commit | Line | Data |
---|---|---|
c72a1d60 RP |
1 | /* |
2 | * LED Class Core | |
3 | * | |
4 | * Copyright 2005-2006 Openedhand Ltd. | |
5 | * | |
6 | * Author: Richard Purdie <[email protected]> | |
7 | * | |
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. | |
11 | * | |
12 | */ | |
13 | ||
14 | #include <linux/kernel.h> | |
15 | #include <linux/list.h> | |
16 | #include <linux/module.h> | |
72f8da32 | 17 | #include <linux/rwsem.h> |
c72a1d60 RP |
18 | #include <linux/leds.h> |
19 | #include "leds.h" | |
20 | ||
72f8da32 | 21 | DECLARE_RWSEM(leds_list_lock); |
4d404fd5 | 22 | EXPORT_SYMBOL_GPL(leds_list_lock); |
c72a1d60 | 23 | |
4d404fd5 | 24 | LIST_HEAD(leds_list); |
c72a1d60 | 25 | EXPORT_SYMBOL_GPL(leds_list); |