Commit 050bf0fa authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] cxd2820r: correct missing error checks

Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 58b0ed25
...@@ -314,6 +314,8 @@ static int cxd2820r_set_frontend(struct dvb_frontend *fe, ...@@ -314,6 +314,8 @@ static int cxd2820r_set_frontend(struct dvb_frontend *fe,
} else if (c->delivery_system == SYS_DVBT2) { } else if (c->delivery_system == SYS_DVBT2) {
/* DVB-T => DVB-T2 */ /* DVB-T => DVB-T2 */
ret = cxd2820r_sleep_t(fe); ret = cxd2820r_sleep_t(fe);
if (ret)
break;
ret = cxd2820r_set_frontend_t2(fe, p); ret = cxd2820r_set_frontend_t2(fe, p);
} }
break; break;
...@@ -324,6 +326,8 @@ static int cxd2820r_set_frontend(struct dvb_frontend *fe, ...@@ -324,6 +326,8 @@ static int cxd2820r_set_frontend(struct dvb_frontend *fe,
} else if (c->delivery_system == SYS_DVBT) { } else if (c->delivery_system == SYS_DVBT) {
/* DVB-T2 => DVB-T */ /* DVB-T2 => DVB-T */
ret = cxd2820r_sleep_t2(fe); ret = cxd2820r_sleep_t2(fe);
if (ret)
break;
ret = cxd2820r_set_frontend_t(fe, p); ret = cxd2820r_set_frontend_t(fe, p);
} }
break; break;
......
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