Commit eafeda96 authored by Maks Naumov's avatar Maks Naumov Committed by Mauro Carvalho Chehab

[media] media: stv0367: fix frontend modulation initialization with FE_CAB_MOD_QAM256

It was using the wrong constant for QAM256 on get_frontend.
Signed-off-by: default avatarMaks Naumov <maksqwe1@ukr.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 78e719a5
...@@ -3163,7 +3163,7 @@ static int stv0367cab_get_frontend(struct dvb_frontend *fe) ...@@ -3163,7 +3163,7 @@ static int stv0367cab_get_frontend(struct dvb_frontend *fe)
case FE_CAB_MOD_QAM128: case FE_CAB_MOD_QAM128:
p->modulation = QAM_128; p->modulation = QAM_128;
break; break;
case QAM_256: case FE_CAB_MOD_QAM256:
p->modulation = QAM_256; p->modulation = QAM_256;
break; break;
default: default:
......
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