~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux-2.6.17/drivers/leds/led-core.c

Version: ~ [ 2.6.16 ] ~ [ 2.6.17 ] ~
Architecture: ~ [ ia64 ] ~ [ i386 ] ~ [ arm ] ~ [ ppc ] ~ [ sparc64 ] ~

  1 /*
  2  * LED Class Core
  3  *
  4  * Copyright 2005-2006 Openedhand Ltd.
  5  *
  6  * Author: Richard Purdie <rpurdie@openedhand.com>
  7  *
  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.
 11  *
 12  */
 13 
 14 #include <linux/kernel.h>
 15 #include <linux/list.h>
 16 #include <linux/module.h>
 17 #include <linux/spinlock.h>
 18 #include <linux/leds.h>
 19 #include "leds.h"
 20 
 21 rwlock_t leds_list_lock = RW_LOCK_UNLOCKED;
 22 LIST_HEAD(leds_list);
 23 
 24 EXPORT_SYMBOL_GPL(leds_list);
 25 EXPORT_SYMBOL_GPL(leds_list_lock);
 26 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.