ledtrig-ide-disk.c 817 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * LED IDE-Disk Activity Trigger
  3. *
  4. * Copyright 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/init.h>
  15. #include <linux/leds.h>
  16. #define BLINK_DELAY 30
  17. DEFINE_LED_TRIGGER(ledtrig_ide);
  18. static unsigned long ide_blink_delay = BLINK_DELAY;
  19. void ledtrig_ide_activity(void)
  20. {
  21. led_trigger_blink_oneshot(ledtrig_ide,
  22. &ide_blink_delay, &ide_blink_delay, 0);
  23. }
  24. EXPORT_SYMBOL(ledtrig_ide_activity);
  25. static int __init ledtrig_ide_init(void)
  26. {
  27. led_trigger_register_simple("ide-disk", &ledtrig_ide);
  28. return 0;
  29. }
  30. device_initcall(ledtrig_ide_init);