Commit 10d67371 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

[media] DVB: remove "stats" property bits from ATSC-MH API property additions

Mauro is proposing a new API to handle statistics. This functionality will
be returned after the statistics API is ready. Just remove them for now.
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 31136214
...@@ -664,21 +664,6 @@ typedef enum atscmh_sccc_code_mode { ...@@ -664,21 +664,6 @@ typedef enum atscmh_sccc_code_mode {
} atscmh_sccc_code_mode_t; } atscmh_sccc_code_mode_t;
</programlisting> </programlisting>
</section> </section>
<section id="DTV-ATSCMH-FIC-ERR">
<title><constant>DTV_ATSCMH_FIC_ERR</constant></title>
<para>FIC error count.</para>
<para>Possible values: 0, 1, 2, 3, ..., 0xffff</para>
</section>
<section id="DTV-ATSCMH-CRC-ERR">
<title><constant>DTV_ATSCMH_CRC_ERR</constant></title>
<para>CRC error count.</para>
<para>Possible values: 0, 1, 2, 3, ..., 0xffff</para>
</section>
<section id="DTV-ATSCMH-RS-ERR">
<title><constant>DTV_ATSCMH_RS_ERR</constant></title>
<para>RS error count.</para>
<para>Possible values: 0, 1, 2, 3, ..., 0xffff</para>
</section>
</section> </section>
<section id="DTV-API-VERSION"> <section id="DTV-API-VERSION">
<title><constant>DTV_API_VERSION</constant></title> <title><constant>DTV_API_VERSION</constant></title>
...@@ -947,9 +932,6 @@ typedef enum fe_hierarchy { ...@@ -947,9 +932,6 @@ typedef enum fe_hierarchy {
<listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-B"><constant>DTV_ATSCMH_SCCC_CODE_MODE_B</constant></link></para></listitem> <listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-B"><constant>DTV_ATSCMH_SCCC_CODE_MODE_B</constant></link></para></listitem>
<listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-C"><constant>DTV_ATSCMH_SCCC_CODE_MODE_C</constant></link></para></listitem> <listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-C"><constant>DTV_ATSCMH_SCCC_CODE_MODE_C</constant></link></para></listitem>
<listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-D"><constant>DTV_ATSCMH_SCCC_CODE_MODE_D</constant></link></para></listitem> <listitem><para><link linkend="DTV-ATSCMH-SCCC-CODE_MODE-D"><constant>DTV_ATSCMH_SCCC_CODE_MODE_D</constant></link></para></listitem>
<listitem><para><link linkend="DTV-ATSCMH-FIC-ERR"><constant>DTV_ATSCMH_FIC_ERR</constant></link></para></listitem>
<listitem><para><link linkend="DTV-ATSCMH-CRC-ERR"><constant>DTV_ATSCMH_CRC_ERR</constant></link></para></listitem>
<listitem><para><link linkend="DTV-ATSCMH-RS-ERR"><constant>DTV_ATSCMH_RS_ERR</constant></link></para></listitem>
</itemizedlist> </itemizedlist>
</section> </section>
</section> </section>
......
...@@ -1049,9 +1049,6 @@ static struct dtv_cmds_h dtv_cmds[DTV_MAX_COMMAND + 1] = { ...@@ -1049,9 +1049,6 @@ static struct dtv_cmds_h dtv_cmds[DTV_MAX_COMMAND + 1] = {
_DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B, 0, 0), _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_B, 0, 0),
_DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C, 0, 0), _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_C, 0, 0),
_DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D, 0, 0), _DTV_CMD(DTV_ATSCMH_SCCC_CODE_MODE_D, 0, 0),
_DTV_CMD(DTV_ATSCMH_FIC_ERR, 0, 0),
_DTV_CMD(DTV_ATSCMH_CRC_ERR, 0, 0),
_DTV_CMD(DTV_ATSCMH_RS_ERR, 0, 0),
}; };
static void dtv_property_dump(struct dtv_property *tvp) static void dtv_property_dump(struct dtv_property *tvp)
...@@ -1438,15 +1435,6 @@ static int dtv_property_process_get(struct dvb_frontend *fe, ...@@ -1438,15 +1435,6 @@ static int dtv_property_process_get(struct dvb_frontend *fe,
case DTV_ATSCMH_SCCC_CODE_MODE_D: case DTV_ATSCMH_SCCC_CODE_MODE_D:
tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_d; tvp->u.data = fe->dtv_property_cache.atscmh_sccc_code_mode_d;
break; break;
case DTV_ATSCMH_FIC_ERR:
tvp->u.data = fe->dtv_property_cache.atscmh_fic_err;
break;
case DTV_ATSCMH_CRC_ERR:
tvp->u.data = fe->dtv_property_cache.atscmh_crc_err;
break;
case DTV_ATSCMH_RS_ERR:
tvp->u.data = fe->dtv_property_cache.atscmh_rs_err;
break;
default: default:
return -EINVAL; return -EINVAL;
......
...@@ -390,10 +390,6 @@ struct dtv_frontend_properties { ...@@ -390,10 +390,6 @@ struct dtv_frontend_properties {
u8 atscmh_sccc_code_mode_b; u8 atscmh_sccc_code_mode_b;
u8 atscmh_sccc_code_mode_c; u8 atscmh_sccc_code_mode_c;
u8 atscmh_sccc_code_mode_d; u8 atscmh_sccc_code_mode_d;
u16 atscmh_fic_err;
u16 atscmh_crc_err;
u16 atscmh_rs_err;
}; };
struct dvb_frontend { struct dvb_frontend {
......
...@@ -804,6 +804,7 @@ static int lg216x_get_sccc_code_mode(struct lg216x_state *state, ...@@ -804,6 +804,7 @@ static int lg216x_get_sccc_code_mode(struct lg216x_state *state,
/* ------------------------------------------------------------------------ */ /* ------------------------------------------------------------------------ */
#if 0
static int lg216x_read_fic_err_count(struct lg216x_state *state, u8 *err) static int lg216x_read_fic_err_count(struct lg216x_state *state, u8 *err)
{ {
u8 fic_err; u8 fic_err;
...@@ -936,6 +937,7 @@ static int lg216x_read_rs_err_count(struct lg216x_state *state, u16 *err) ...@@ -936,6 +937,7 @@ static int lg216x_read_rs_err_count(struct lg216x_state *state, u16 *err)
} }
return ret; return ret;
} }
#endif
/* ------------------------------------------------------------------------ */ /* ------------------------------------------------------------------------ */
...@@ -1016,6 +1018,7 @@ static int lg216x_get_frontend(struct dvb_frontend *fe) ...@@ -1016,6 +1018,7 @@ static int lg216x_get_frontend(struct dvb_frontend *fe)
if (lg_fail(ret)) if (lg_fail(ret))
goto fail; goto fail;
} }
#if 0
ret = lg216x_read_fic_err_count(state, ret = lg216x_read_fic_err_count(state,
(u8 *)&fe->dtv_property_cache.atscmh_fic_err); (u8 *)&fe->dtv_property_cache.atscmh_fic_err);
if (lg_fail(ret)) if (lg_fail(ret))
...@@ -1042,6 +1045,7 @@ static int lg216x_get_frontend(struct dvb_frontend *fe) ...@@ -1042,6 +1045,7 @@ static int lg216x_get_frontend(struct dvb_frontend *fe)
break; break;
} }
lg_fail(ret); lg_fail(ret);
#endif
fail: fail:
return ret; return ret;
} }
...@@ -1319,13 +1323,16 @@ static int lg216x_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks) ...@@ -1319,13 +1323,16 @@ static int lg216x_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
{ {
struct lg216x_state *state = fe->demodulator_priv; struct lg216x_state *state = fe->demodulator_priv;
int ret; int ret;
#if 0
ret = lg216x_read_rs_err_count(state, ret = lg216x_read_rs_err_count(state,
&fe->dtv_property_cache.atscmh_rs_err); &fe->dtv_property_cache.atscmh_rs_err);
if (lg_fail(ret)) if (lg_fail(ret))
goto fail; goto fail;
*ucblocks = fe->dtv_property_cache.atscmh_rs_err; *ucblocks = fe->dtv_property_cache.atscmh_rs_err;
#else
*ucblocks = 0;
#endif
fail: fail:
return 0; return 0;
} }
......
...@@ -336,11 +336,8 @@ struct dvb_frontend_event { ...@@ -336,11 +336,8 @@ struct dvb_frontend_event {
#define DTV_ATSCMH_SCCC_CODE_MODE_B 57 #define DTV_ATSCMH_SCCC_CODE_MODE_B 57
#define DTV_ATSCMH_SCCC_CODE_MODE_C 58 #define DTV_ATSCMH_SCCC_CODE_MODE_C 58
#define DTV_ATSCMH_SCCC_CODE_MODE_D 59 #define DTV_ATSCMH_SCCC_CODE_MODE_D 59
#define DTV_ATSCMH_FIC_ERR 60
#define DTV_ATSCMH_CRC_ERR 61
#define DTV_ATSCMH_RS_ERR 62
#define DTV_MAX_COMMAND DTV_ATSCMH_RS_ERR #define DTV_MAX_COMMAND DTV_ATSCMH_SCCC_CODE_MODE_D
typedef enum fe_pilot { typedef enum fe_pilot {
PILOT_ON, PILOT_ON,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment