mt9p031.h 310 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef MT9P031_H
  3. #define MT9P031_H
  4. struct v4l2_subdev;
  5. /*
  6. * struct mt9p031_platform_data - MT9P031 platform data
  7. * @ext_freq: Input clock frequency
  8. * @target_freq: Pixel clock frequency
  9. */
  10. struct mt9p031_platform_data {
  11. int ext_freq;
  12. int target_freq;
  13. };
  14. #endif