[media] lbdt3306a: remove uneeded braces

WARNING: braces {} are not necessary for any arm of this statement
+		if (ret == 0) {
[...]
+		} else {
[...]

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Mauro Carvalho Chehab 2014-10-28 12:07:52 -02:00
Родитель b4e43e959b
Коммит c9897649db
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -1518,11 +1518,10 @@ static int lgdt3306a_read_status(struct dvb_frontend *fe, fe_status_t *status)
if (fe->ops.tuner_ops.get_rf_strength) {
ret = fe->ops.tuner_ops.get_rf_strength(fe, &strength);
if (ret == 0) {
if (ret == 0)
dbg_info("strength=%d\n", strength);
} else {
else
dbg_info("fe->ops.tuner_ops.get_rf_strength() failed\n");
}
}
*status = 0;