Javier Martin | 418d93a | 2011-06-20 13:21:16 +0200 | [diff] [blame] | 1 | #ifndef MT9P031_H |
| 2 | #define MT9P031_H |
| 3 | |
| 4 | struct v4l2_subdev; |
| 5 | |
Laurent Pinchart | 15693b5 | 2012-03-09 10:59:41 -0300 | [diff] [blame] | 6 | /* |
| 7 | * struct mt9p031_platform_data - MT9P031 platform data |
Laurent Pinchart | 15693b5 | 2012-03-09 10:59:41 -0300 | [diff] [blame] | 8 | * @ext_freq: Input clock frequency |
| 9 | * @target_freq: Pixel clock frequency |
| 10 | */ |
Javier Martin | 418d93a | 2011-06-20 13:21:16 +0200 | [diff] [blame] | 11 | struct mt9p031_platform_data { |
Laurent Pinchart | 15693b5 | 2012-03-09 10:59:41 -0300 | [diff] [blame] | 12 | int ext_freq; |
| 13 | int target_freq; |
Javier Martin | 418d93a | 2011-06-20 13:21:16 +0200 | [diff] [blame] | 14 | }; |
| 15 | |
| 16 | #endif |