ASoC: tlv320dac33: Correct the OSCSET calculation

OSCSET calculation was not correct in case of 44.1KHz
sampling rate.
With small adjustment both 48 and 44.1 KHz calculation
now gives the correct value.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

authored by Peter Ujfalusi and committed by Mark Brown 7833ae0e e5e878c1

+1 -1
+1 -1
sound/soc/codecs/tlv320dac33.c
··· 700 700 } 701 701 702 702 #define CALC_OSCSET(rate, refclk) ( \ 703 - ((((rate * 10000) / refclk) * 4096) + 5000) / 10000) 703 + ((((rate * 10000) / refclk) * 4096) + 7000) / 10000) 704 704 #define CALC_RATIOSET(rate, refclk) ( \ 705 705 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000) 706 706