Missing return value.

This commit is contained in:
Ralph Metzler 2015-10-22 14:53:34 +02:00
parent bb334ea229
commit 66be95a2b9
1 changed files with 2 additions and 1 deletions

View File

@ -1008,12 +1008,13 @@ static void release(struct dvb_frontend *fe)
kfree(state);
}
static void sleep(struct dvb_frontend *fe)
static int sleep(struct dvb_frontend *fe)
{
struct cxd_state *state = fe->demodulator_priv;
Stop(state);
ShutDown(state);
return 0;
}
static int Start(struct cxd_state *state, u32 IntermediateFrequency)