/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

  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. #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"
  19. DECLARE_RWSEM(leds_list_lock);
  20. EXPORT_SYMBOL_GPL(leds_list_lock);
  21. LIST_HEAD(leds_list);
  22. EXPORT_SYMBOL_GPL(leds_list);