Commit 5a8a0a16 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (5046): Pvrusb2: Fix tuner frequency calculation



A conversion from Hz to V4L frequency units was accidentally removed
by an earlier change.  Restore it.

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 0f0f257b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ static void set_frequency(struct pvr2_hdw *hdw)
	fv = hdw->freqVal;
	pvr2_trace(PVR2_TRACE_CHIPS,"i2c v4l2 set_freq(%lu)",fv);
	memset(&freq,0,sizeof(freq));
	freq.frequency = fv;
	freq.frequency = fv / 62500;
	freq.tuner = 0;
	freq.type = (hdw->input_val == PVR2_CVAL_INPUT_RADIO) ?
		     V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;