leds-omap.h 498 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2006 Samsung Electronics
  3. * Kyungmin Park <kyungmin.park@samsung.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef ASMARM_ARCH_LED_H
  10. #define ASMARM_ARCH_LED_H
  11. struct omap_led_config {
  12. struct led_classdev cdev;
  13. s16 gpio;
  14. };
  15. struct omap_led_platform_data {
  16. s16 nr_leds;
  17. struct omap_led_config *leds;
  18. };
  19. #endif