From 66be95a2b96fcb00cf7c8d58057c3715eb4fb4c2 Mon Sep 17 00:00:00 2001 From: Ralph Metzler Date: Thu, 22 Oct 2015 14:53:34 +0200 Subject: [PATCH] Missing return value. --- frontends/cxd2843.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontends/cxd2843.c b/frontends/cxd2843.c index e4e88d9..e8b5e25 100644 --- a/frontends/cxd2843.c +++ b/frontends/cxd2843.c @@ -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)