diff options
author | Bryan Scott <sirbryan@gmail.com> | 2006-06-21 09:28:12 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:05:17 -0400 |
commit | 3da2f4c0c64f4267594016c7bda3cc13fe7c95fb (patch) | |
tree | 70beb31b72e8e6a1f5e3161b84975dda36758512 /drivers | |
parent | 4e7024bd3278f14fdc435e6ff11c37cee752de99 (diff) |
V4L/DVB (4170): ATSC typecheck bugfix
Signed-off-by: Bryan Scott <sirbryan@gmail.com>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/bt8xx/dst.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/bt8xx/dst.c b/drivers/media/dvb/bt8xx/dst.c index 55a00cf04572..97d6c632542a 100644 --- a/drivers/media/dvb/bt8xx/dst.c +++ b/drivers/media/dvb/bt8xx/dst.c | |||
@@ -1000,11 +1000,11 @@ static int dst_get_tuner_info(struct dst_state *state) | |||
1000 | // if (state->type_flags & DST_TYPE_HAS_TS204) | 1000 | // if (state->type_flags & DST_TYPE_HAS_TS204) |
1001 | // state->type_flags &= ~DST_TYPE_HAS_TS204; | 1001 | // state->type_flags &= ~DST_TYPE_HAS_TS204; |
1002 | // state->type_flags |= DST_TYPE_HAS_NEWTUNE; | 1002 | // state->type_flags |= DST_TYPE_HAS_NEWTUNE; |
1003 | if (!(state->type_flags & DST_TYPE_IS_ATSC)) { | 1003 | if (state->type_flags != DST_TYPE_IS_ATSC)) |
1004 | state->type_flags |= DST_TYPE_HAS_NEWTUNE; | 1004 | state->type_flags |= DST_TYPE_HAS_NEWTUNE; |
1005 | } else { | 1005 | else |
1006 | state->type_flags |= DST_TYPE_HAS_NEWTUNE_2; | 1006 | state->type_flags |= DST_TYPE_HAS_NEWTUNE_2; |
1007 | } | 1007 | |
1008 | dprintk(verbose, DST_INFO, 1, "DST type has TS=188, Daughterboard=[%d]", state->board_info[1]); | 1008 | dprintk(verbose, DST_INFO, 1, "DST type has TS=188, Daughterboard=[%d]", state->board_info[1]); |
1009 | 1009 | ||
1010 | } else if (state->board_info[0] == 0xcc) { | 1010 | } else if (state->board_info[0] == 0xcc) { |