[PATCH] dvb: dst: fix broken support for vp-3040 TS204
fixes broken support for vp-3040 TS204 Thanks-to: Lee Hammerton <savoury.snax@bulldoghome.com> Signed-off-by: Manu Abraham <manu@linuxtv.org> Cc: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f630558dfb
commit
4c09aa72b6
|
@ -905,10 +905,6 @@ static int dst_get_device_id(struct dst_state *state)
|
|||
state->dst_type = use_dst_type;
|
||||
dst_type_flags_print(state->type_flags);
|
||||
|
||||
if (state->type_flags & DST_TYPE_HAS_TS204) {
|
||||
dst_packsize(state, 204);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -940,6 +936,9 @@ static int dst_probe(struct dst_state *state)
|
|||
if (dst_get_tuner_info(state) < 0)
|
||||
dprintk(verbose, DST_INFO, 1, "Tuner: Unsupported command");
|
||||
}
|
||||
if (state->type_flags & DST_TYPE_HAS_TS204) {
|
||||
dst_packsize(state, 204);
|
||||
}
|
||||
if (state->type_flags & DST_TYPE_HAS_FW_BUILD) {
|
||||
if (dst_fw_ver(state) < 0) {
|
||||
dprintk(verbose, DST_INFO, 1, "FW: Unsupported command");
|
||||
|
|
Loading…
Reference in New Issue