/drivers/leds/led-core.c
https://bitbucket.org/wisechild/galaxy-nexus · C · 25 lines · 10 code · 3 blank · 12 comment · 0 complexity · 1b2f5b752feac41058dafb32308c15cc MD5 · raw file
- /*
- * LED Class Core
- *
- * Copyright 2005-2006 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.
- *
- */
- #include <linux/kernel.h>
- #include <linux/list.h>
- #include <linux/module.h>
- #include <linux/rwsem.h>
- #include <linux/leds.h>
- #include "leds.h"
- DECLARE_RWSEM(leds_list_lock);
- EXPORT_SYMBOL_GPL(leds_list_lock);
- LIST_HEAD(leds_list);
- EXPORT_SYMBOL_GPL(leds_list);