Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fec1c80 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] dib8000: Fix: add missing 4K FFT mode



Without that, tuning may fail on 4K FFT mode, as the transmission
parameter cache will be initialized with a wrong value.

Acked-By: default avatarPatrick Boettcher <pboettcher@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 7fa676c6
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -3432,6 +3432,9 @@ static int dib8000_get_frontend(struct dvb_frontend *fe)
	case 1:
	case 1:
		fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_2K;
		fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_2K;
		break;
		break;
	case 2:
		fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_4K;
		break;
	case 3:
	case 3:
	default:
	default:
		fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_8K;
		fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_8K;