Commit 9e94136d authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] mxl5007t: bugfix DVB-T 7 MHz and 8 MHz bandwidth

DVB-T did not work at all - only 6 MHz was working but it is not
commonly used.
Fix it.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 083b6b8a
...@@ -644,8 +644,10 @@ static int mxl5007t_set_params(struct dvb_frontend *fe) ...@@ -644,8 +644,10 @@ static int mxl5007t_set_params(struct dvb_frontend *fe)
break; break;
case 7000000: case 7000000:
bw = MxL_BW_7MHz; bw = MxL_BW_7MHz;
break;
case 8000000: case 8000000:
bw = MxL_BW_8MHz; bw = MxL_BW_8MHz;
break;
default: default:
return -EINVAL; return -EINVAL;
} }
......
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