Changes the values in the switch statement of the function,d29l2_get_frontend
to use the proper value for the dtv_frontend_properties modulation value. Further
more this changes the values of case 0 and case 1 to use the correct values of
QAM_4NR and QAM_4 respectfully.
Signed-off-by: Nicholas Krause <xerofoify@xxxxxxxxx>
---
drivers/media/dvb-frontends/hd29l2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/dvb-frontends/hd29l2.c b/drivers/media/dvb-frontends/hd29l2.c
index d7b9d54..48cafc9 100644
--- a/drivers/media/dvb-frontends/hd29l2.c
+++ b/drivers/media/dvb-frontends/hd29l2.c
@@ -579,11 +579,11 @@ static int hd29l2_get_frontend(struct dvb_frontend *fe)
switch ((buf[0] >> 0) & 0x07) {
case 0: /* QAM4NR */
str_constellation = "QAM4NR";
- c->modulation = QAM_AUTO; /* FIXME */
+ c->modulation = QAM_4NR;
break;
case 1: /* QAM4 */
str_constellation = "QAM4";
- c->modulation = QPSK; /* FIXME */
+ c->modulation = QAM_4;
break;
case 2:
str_constellation = "QAM16";