Searched refs:freq16 (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/isa/gus/
H A Dgus_volume.c58 unsigned short snd_gf1_translate_freq(struct snd_gus_card * gus, unsigned int freq16) argument
60 freq16 >>= 3;
61 if (freq16 < 50)
62 freq16 = 50;
63 if (freq16 & 0xf8000000) {
64 freq16 = ~0xf8000000;
65 snd_printk(KERN_ERR "snd_gf1_translate_freq: overflow - freq = 0x%x\n", freq16);
67 return ((freq16 << 9) + (gus->gf1.playback_freq >> 1)) / gus->gf1.playback_freq;

Completed in 93 milliseconds