xref: /linux/include/media/i2c/cs53l32a.h (revision 5525aebd4e0c6f7d92ec1cb074218bbcf3d46f13)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3     cs53l32a.h - definition for cs53l32a inputs and outputs
4 
5     Copyright (C) 2006 Hans Verkuil (hverkuil@kernel.org)
6 
7 */
8 
9 #ifndef _CS53L32A_H_
10 #define _CS53L32A_H_
11 
12 /* There are 2 physical inputs, but the second input can be
13    placed in two modes, the first mode bypasses the PGA (gain),
14    the second goes through the PGA. Hence there are three
15    possible inputs to choose from. */
16 
17 /* CS53L32A HW inputs */
18 #define CS53L32A_IN0 0
19 #define CS53L32A_IN1 1
20 #define CS53L32A_IN2 2
21 
22 #endif
23