Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef MT9P031_H
0003 #define MT9P031_H
0004 
0005 struct v4l2_subdev;
0006 
0007 /*
0008  * struct mt9p031_platform_data - MT9P031 platform data
0009  * @ext_freq: Input clock frequency
0010  * @target_freq: Pixel clock frequency
0011  */
0012 struct mt9p031_platform_data {
0013     unsigned int pixclk_pol:1;
0014     int ext_freq;
0015     int target_freq;
0016 };
0017 
0018 #endif