Fix gcc 4.5.1 miscompiling drivers/char/i8k.c (again)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / leds / led-core.c
blob016d19f5486f2bd7cf9ea93df863f7d5c8a8cd1a
1 /*
2 * LED Class Core
4 * Copyright 2005-2006 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.
14 #include <linux/kernel.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/rwsem.h>
18 #include <linux/leds.h>
19 #include "leds.h"
21 DECLARE_RWSEM(leds_list_lock);
22 EXPORT_SYMBOL_GPL(leds_list_lock);
24 LIST_HEAD(leds_list);
25 EXPORT_SYMBOL_GPL(leds_list);