rdc_boards.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * RDC321x boards
  3. *
  4. * Copyright (C) 2007-2009 OpenWrt.org
  5. * Copyright (C) 2007 Florian Fainelli <[email protected]>
  6. * Copyright (C) 2008-2009 Daniel Gimpelevich <[email protected]>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. * Boston, MA 02110-1301, USA.
  22. *
  23. */
  24. #ifndef _RDC_BOARDS_H__
  25. #define _RDC_BOARDS_H__
  26. #include <linux/leds.h>
  27. #include <linux/gpio_buttons.h>
  28. struct rdc_platform_data {
  29. struct gpio_led_platform_data led_data;
  30. struct gpio_buttons_platform_data button_data;
  31. };
  32. #endif