Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.9 20 lines 431 B view raw
1#ifndef MT9P031_H 2#define MT9P031_H 3 4struct v4l2_subdev; 5 6/* 7 * struct mt9p031_platform_data - MT9P031 platform data 8 * @set_xclk: Clock frequency set callback 9 * @reset: Chip reset GPIO (set to -1 if not used) 10 * @ext_freq: Input clock frequency 11 * @target_freq: Pixel clock frequency 12 */ 13struct mt9p031_platform_data { 14 int (*set_xclk)(struct v4l2_subdev *subdev, int hz); 15 int reset; 16 int ext_freq; 17 int target_freq; 18}; 19 20#endif