diff options
Diffstat (limited to 'drivers/media/dvb/bt8xx/dst_ca.c')
-rw-r--r-- | drivers/media/dvb/bt8xx/dst_ca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dst_ca.c b/drivers/media/dvb/bt8xx/dst_ca.c index 6776a592045f..8a8a3333cb8f 100644 --- a/drivers/media/dvb/bt8xx/dst_ca.c +++ b/drivers/media/dvb/bt8xx/dst_ca.c | |||
@@ -328,7 +328,8 @@ u32 asn_1_decode(u8 *asn_1_array) | |||
328 | } else { | 328 | } else { |
329 | word_count = length_field & 0x7f; | 329 | word_count = length_field & 0x7f; |
330 | for (count = 0; count < word_count; count++) { | 330 | for (count = 0; count < word_count; count++) { |
331 | length = (length | asn_1_array[count + 1]) << 8; | 331 | length = length << 8; |
332 | length += asn_1_array[count + 1]; | ||
332 | dprintk(verbose, DST_CA_DEBUG, 1, " Length=[%04x]", length); | 333 | dprintk(verbose, DST_CA_DEBUG, 1, " Length=[%04x]", length); |
333 | } | 334 | } |
334 | } | 335 | } |