Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
bfin_capture.h
Go to the documentation of this file.
1 #ifndef _BFIN_CAPTURE_H_
2 #define _BFIN_CAPTURE_H_
3 
4 #include <linux/i2c.h>
5 
6 struct v4l2_input;
7 struct ppi_info;
8 
9 struct bcap_route {
12 };
13 
15  /* card name */
16  char *card_name;
17  /* inputs available at the sub device */
18  struct v4l2_input *inputs;
19  /* number of inputs supported */
21  /* routing information for each input */
22  struct bcap_route *routes;
23  /* i2c bus adapter no */
25  /* i2c subdevice board info */
27  /* ppi board info */
28  const struct ppi_info *ppi_info;
29  /* ppi control */
30  unsigned long ppi_control;
31  /* ppi interrupt mask */
33  /* horizontal blanking clocks */
35 };
36 
37 #endif