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 v4.6-rc6 16 lines 271 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 * @ext_freq: Input clock frequency 9 * @target_freq: Pixel clock frequency 10 */ 11struct mt9p031_platform_data { 12 int ext_freq; 13 int target_freq; 14}; 15 16#endif