mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
7c3be9f812
This simplifies platform data and DT integration. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
17 lines
271 B
C
17 lines
271 B
C
#ifndef MT9P031_H
|
|
#define MT9P031_H
|
|
|
|
struct v4l2_subdev;
|
|
|
|
/*
|
|
* struct mt9p031_platform_data - MT9P031 platform data
|
|
* @ext_freq: Input clock frequency
|
|
* @target_freq: Pixel clock frequency
|
|
*/
|
|
struct mt9p031_platform_data {
|
|
int ext_freq;
|
|
int target_freq;
|
|
};
|
|
|
|
#endif
|