diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2006-06-21 09:27:49 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:05:16 -0400 |
commit | 396cffd63ed460ae2544d62745fabd22296af99a (patch) | |
tree | f898cbe3639afae4d4c32f10f2f7fff9d3961101 /drivers/media/dvb/bt8xx/dst_common.h | |
parent | 1c4e7339e55af69bad55eb9a8f9d5b03a552020b (diff) |
V4L/DVB (4164): Add DVB-S specific demod names
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/bt8xx/dst_common.h')
-rw-r--r-- | drivers/media/dvb/bt8xx/dst_common.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dst_common.h b/drivers/media/dvb/bt8xx/dst_common.h index 5bd1bdc4e5f4..3908c5b8c72d 100644 --- a/drivers/media/dvb/bt8xx/dst_common.h +++ b/drivers/media/dvb/bt8xx/dst_common.h | |||
@@ -64,6 +64,11 @@ | |||
64 | #define DST_TYPE_HAS_ANALOG 64 /* Analog inputs */ | 64 | #define DST_TYPE_HAS_ANALOG 64 /* Analog inputs */ |
65 | #define DST_TYPE_HAS_SESSION 128 | 65 | #define DST_TYPE_HAS_SESSION 128 |
66 | 66 | ||
67 | #define TUNER_TYPE_MULTI 1 | ||
68 | #define TUNER_TYPE_L64724 2 | ||
69 | #define TUNER_TYPE_STV0299 4 | ||
70 | #define TUNER_TYPE_MB86A15 8 | ||
71 | |||
67 | #define RDC_8820_PIO_0_DISABLE 0 | 72 | #define RDC_8820_PIO_0_DISABLE 0 |
68 | #define RDC_8820_PIO_0_ENABLE 1 | 73 | #define RDC_8820_PIO_0_ENABLE 1 |
69 | #define RDC_8820_INT 2 | 74 | #define RDC_8820_INT 2 |
@@ -119,7 +124,7 @@ struct dst_state { | |||
119 | u8 card_info[8]; | 124 | u8 card_info[8]; |
120 | u8 vendor[8]; | 125 | u8 vendor[8]; |
121 | u8 board_info[8]; | 126 | u8 board_info[8]; |
122 | 127 | u32 tuner_type; | |
123 | struct mutex dst_mutex; | 128 | struct mutex dst_mutex; |
124 | }; | 129 | }; |
125 | 130 | ||
@@ -129,6 +134,7 @@ struct dst_types { | |||
129 | u8 dst_type; | 134 | u8 dst_type; |
130 | u32 type_flags; | 135 | u32 type_flags; |
131 | u32 dst_feature; | 136 | u32 dst_feature; |
137 | u32 tuner_type; | ||
132 | }; | 138 | }; |
133 | 139 | ||
134 | struct dst_config | 140 | struct dst_config |