[media] drxk_hard: Drop unused parameter
Last parameter of function GetLockStatus() isn't used so drop it. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Родитель
ced9b21ff6
Коммит
a3ad56d0ab
|
@ -1947,8 +1947,7 @@ static int ShutDown(struct drxk_state *state)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int GetLockStatus(struct drxk_state *state, u32 *pLockStatus,
|
static int GetLockStatus(struct drxk_state *state, u32 *pLockStatus)
|
||||||
u32 Time)
|
|
||||||
{
|
{
|
||||||
int status = -EINVAL;
|
int status = -EINVAL;
|
||||||
|
|
||||||
|
@ -6488,7 +6487,7 @@ static int drxk_get_stats(struct dvb_frontend *fe)
|
||||||
|
|
||||||
/* get status */
|
/* get status */
|
||||||
state->fe_status = 0;
|
state->fe_status = 0;
|
||||||
GetLockStatus(state, &stat, 0);
|
GetLockStatus(state, &stat);
|
||||||
if (stat == MPEG_LOCK)
|
if (stat == MPEG_LOCK)
|
||||||
state->fe_status |= 0x1f;
|
state->fe_status |= 0x1f;
|
||||||
if (stat == FEC_LOCK)
|
if (stat == FEC_LOCK)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче