mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
Missing return value.
This commit is contained in:
parent
bb334ea229
commit
66be95a2b9
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user