/*1* LED Class Core2*3* Copyright 2005-2006 Openedhand Ltd.4*5* Author: Richard Purdie <[email protected]>6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*11*/1213#include <linux/kernel.h>14#include <linux/list.h>15#include <linux/module.h>16#include <linux/rwsem.h>17#include <linux/leds.h>18#include "leds.h"1920DECLARE_RWSEM(leds_list_lock);21EXPORT_SYMBOL_GPL(leds_list_lock);2223LIST_HEAD(leds_list);24EXPORT_SYMBOL_GPL(leds_list);252627