dvb: Fix VCT handling
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Sat, 15 Feb 2014 18:29:00 +0000 (03:29 +0900)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Sat, 15 Feb 2014 18:48:48 +0000 (03:48 +0900)
Protocol version is wrong. Fix it.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
lib/include/descriptors/vct.h
lib/libdvbv5/descriptors/vct.c

index f3dad6c..bb3250f 100644 (file)
@@ -87,7 +87,6 @@ struct atsc_table_vct_channel {
 struct atsc_table_vct {
        struct atsc_table_header header;
 
-       uint8_t ATSC_protocol_version;
        uint8_t num_channels_in_section;
 
        /*
index f1c823d..cb75b8b 100644 (file)
@@ -151,7 +151,6 @@ void atsc_table_vct_print(struct dvb_v5_fe_parms *parms, struct atsc_table_vct *
 
        atsc_table_header_print(parms, &vct->header);
 
-       dvb_log("|- Protocol version %d", vct->ATSC_protocol_version);
        dvb_log("|- #channels        %d", vct->num_channels_in_section);
        dvb_log("|\\  channel_id");
        const struct atsc_table_vct_channel *channel = vct->channel;