1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #ifndef STV06XX_ST6422_H_
16 #define STV06XX_ST6422_H_
17
18 #include "stv06xx_sensor.h"
19
20 static int st6422_probe(struct sd *sd);
21 static int st6422_start(struct sd *sd);
22 static int st6422_init(struct sd *sd);
23 static int st6422_init_controls(struct sd *sd);
24 static int st6422_stop(struct sd *sd);
25
26 const struct stv06xx_sensor stv06xx_sensor_st6422 = {
27 .name = "ST6422",
28
29 .min_packet_size = { 300, 847 },
30 .max_packet_size = { 300, 847 },
31 .init = st6422_init,
32 .init_controls = st6422_init_controls,
33 .probe = st6422_probe,
34 .start = st6422_start,
35 .stop = st6422_stop,
36 };
37
38 #endif