sky81452.h 990 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * sky81452.h SKY81452 MFD driver
  3. *
  4. * Copyright 2014 Skyworks Solutions Inc.
  5. * Author : Gyungoh Yoo <jack.yoo@skyworksinc.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef _SKY81452_H
  20. #define _SKY81452_H
  21. #include <linux/platform_data/sky81452-backlight.h>
  22. #include <linux/regulator/machine.h>
  23. struct sky81452_platform_data {
  24. struct sky81452_bl_platform_data *bl_pdata;
  25. struct regulator_init_data *regulator_init_data;
  26. };
  27. #endif