Home
last modified time | relevance | path

Searched refs:hexfreq (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/sound/drivers/vx/
H A Dvx_uer.c150 int hexfreq; in vx_calc_clock_from_freq() local
155 hexfreq = (28224000 * 10) / freq; in vx_calc_clock_from_freq()
156 hexfreq = (hexfreq + 5) / 10; in vx_calc_clock_from_freq()
159 if (snd_BUG_ON(hexfreq <= 0x00000200)) in vx_calc_clock_from_freq()
162 if (hexfreq <= 0x03ff) in vx_calc_clock_from_freq()
163 return hexfreq - 0x00000201; in vx_calc_clock_from_freq()
164 if (hexfreq <= 0x07ff) in vx_calc_clock_from_freq()
165 return (hexfreq / 2) - 1; in vx_calc_clock_from_freq()
166 if (hexfreq <= 0x0fff) in vx_calc_clock_from_freq()
167 return (hexfreq / 4) + 0x000001ff; in vx_calc_clock_from_freq()