diff options
Diffstat (limited to 'include/media/ths7303.h')
-rw-r--r-- | include/media/ths7303.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/include/media/ths7303.h b/include/media/ths7303.h new file mode 100644 index 000000000000..980ec51d574d --- /dev/null +++ b/include/media/ths7303.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2013 Texas Instruments Inc | ||
3 | * | ||
4 | * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. | ||
5 | * | ||
6 | * Contributors: | ||
7 | * Hans Verkuil <hans.verkuil@cisco.com> | ||
8 | * Lad, Prabhakar <prabhakar.lad@ti.com> | ||
9 | * Martin Bugge <marbugge@cisco.com> | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or | ||
12 | * modify it under the terms of the GNU General Public License as | ||
13 | * published by the Free Software Foundation version 2. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this program; if not, write to the Free Software | ||
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
23 | */ | ||
24 | |||
25 | #ifndef THS7353_H | ||
26 | #define THS7353_H | ||
27 | |||
28 | /** | ||
29 | * struct ths7303_platform_data - Platform dependent data | ||
30 | * @ch_1: Bias value for channel one. | ||
31 | * @ch_2: Bias value for channel two. | ||
32 | * @ch_3: Bias value for channel three. | ||
33 | * @init_enable: initalize on init. | ||
34 | */ | ||
35 | struct ths7303_platform_data { | ||
36 | u8 ch_1; | ||
37 | u8 ch_2; | ||
38 | u8 ch_3; | ||
39 | u8 init_enable; | ||
40 | }; | ||
41 | |||
42 | #endif | ||