|
@@ -183,7 +183,9 @@ static int si2168_set_frontend(struct dvb_frontend *fe)
|
|
if (c->bandwidth_hz == 0) {
|
|
if (c->bandwidth_hz == 0) {
|
|
ret = -EINVAL;
|
|
ret = -EINVAL;
|
|
goto err;
|
|
goto err;
|
|
- } else if (c->bandwidth_hz <= 5000000)
|
|
|
|
|
|
+ } else if (c->bandwidth_hz <= 2000000)
|
|
|
|
+ bandwidth = 0x02;
|
|
|
|
+ else if (c->bandwidth_hz <= 5000000)
|
|
bandwidth = 0x05;
|
|
bandwidth = 0x05;
|
|
else if (c->bandwidth_hz <= 6000000)
|
|
else if (c->bandwidth_hz <= 6000000)
|
|
bandwidth = 0x06;
|
|
bandwidth = 0x06;
|