diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-05-29 05:59:45 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-17 07:48:03 -0400 |
commit | 33001010013749886eca5b5645efd80006dd2e51 (patch) | |
tree | e9fce4f64409b50f29814a2f1add69b9584a2fcb /include/media/tveeprom.h | |
parent | 7486af1ae3ee34b12fcff1b1ce3a9cc6a2eca03a (diff) |
[media] tveeprom: remove v4l2-chip-ident.h include
Replace the V4L2_IDENT_* usage with tveeprom-specific defines. This header
is deprecated, so those defines shouldn't be used anymore.
The em28xx driver is the only one that uses the tveeprom audio_processor
field, so that has been updated to use the new tveeprom AUDPROC define.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/tveeprom.h')
-rw-r--r-- | include/media/tveeprom.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/media/tveeprom.h b/include/media/tveeprom.h index a8ad75a9152a..4a1191abd936 100644 --- a/include/media/tveeprom.h +++ b/include/media/tveeprom.h | |||
@@ -1,6 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | */ | 2 | */ |
3 | 3 | ||
4 | enum tveeprom_audio_processor { | ||
5 | /* No audio processor present */ | ||
6 | TVEEPROM_AUDPROC_NONE, | ||
7 | /* The audio processor is internal to the video processor */ | ||
8 | TVEEPROM_AUDPROC_INTERNAL, | ||
9 | /* The audio processor is a MSPXXXX device */ | ||
10 | TVEEPROM_AUDPROC_MSP, | ||
11 | /* The audio processor is another device */ | ||
12 | TVEEPROM_AUDPROC_OTHER, | ||
13 | }; | ||
14 | |||
4 | struct tveeprom { | 15 | struct tveeprom { |
5 | u32 has_radio; | 16 | u32 has_radio; |
6 | /* If has_ir == 0, then it is unknown what the IR capabilities are, | 17 | /* If has_ir == 0, then it is unknown what the IR capabilities are, |