mt9p031.h 334 B

123456789101112131415161718
  1. #ifndef MT9P031_H
  2. #define MT9P031_H
  3. struct v4l2_subdev;
  4. /*
  5. * struct mt9p031_platform_data - MT9P031 platform data
  6. * @reset: Chip reset GPIO (set to -1 if not used)
  7. * @ext_freq: Input clock frequency
  8. * @target_freq: Pixel clock frequency
  9. */
  10. struct mt9p031_platform_data {
  11. int reset;
  12. int ext_freq;
  13. int target_freq;
  14. };
  15. #endif