2006-03-31 10:31:04 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2007-12-31 23:09:44 +00:00
|
|
|
#include <linux/rwsem.h>
|
2006-03-31 10:31:04 +00:00
|
|
|
#include <linux/leds.h>
|
|
|
|
#include "leds.h"
|
|
|
|
|
2007-12-31 23:09:44 +00:00
|
|
|
DECLARE_RWSEM(leds_list_lock);
|
2008-03-09 20:59:57 +00:00
|
|
|
EXPORT_SYMBOL_GPL(leds_list_lock);
|
2006-03-31 10:31:04 +00:00
|
|
|
|
2008-03-09 20:59:57 +00:00
|
|
|
LIST_HEAD(leds_list);
|
2006-03-31 10:31:04 +00:00
|
|
|
EXPORT_SYMBOL_GPL(leds_list);
|