Files
linux-apfs/drivers/leds/led-core.c
T

26 lines
581 B
C
Raw Normal View History

2006-03-31 02:31:04 -08: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>
#include <linux/spinlock.h>
#include <linux/leds.h>
#include "leds.h"
2006-06-27 02:53:55 -07:00
DEFINE_RWLOCK(leds_list_lock);
2006-03-31 02:31:04 -08:00
LIST_HEAD(leds_list);
EXPORT_SYMBOL_GPL(leds_list);
EXPORT_SYMBOL_GPL(leds_list_lock);