lcd_mipid.h 341 B

123456789101112131415161718192021222324
  1. #ifndef __LCD_MIPID_H
  2. #define __LCD_MIPID_H
  3. enum mipid_test_num {
  4. MIPID_TEST_RGB_LINES,
  5. };
  6. enum mipid_test_result {
  7. MIPID_TEST_SUCCESS,
  8. MIPID_TEST_INVALID,
  9. MIPID_TEST_FAILED,
  10. };
  11. #ifdef __KERNEL__
  12. struct mipid_platform_data {
  13. int nreset_gpio;
  14. int data_lines;
  15. void (*shutdown)(struct mipid_platform_data *pdata);
  16. };
  17. #endif
  18. #endif