Lines Matching refs:poll
169 static int poll; variable
175 module_param(poll, uint, S_IRUGO | S_IWUSR);
1131 dsp_poll = poll; in dsp_init()
1135 "maximum.\n", __func__, poll, MAX_POLL); in dsp_init()
1145 dsp_tics = poll * HZ / 8000; in dsp_init()
1146 if (dsp_tics * 8000 != poll * HZ) { in dsp_init()
1149 "%d HZ.\n", poll, HZ); in dsp_init()
1154 poll = 8; in dsp_init()
1155 while (poll <= MAX_POLL) { in dsp_init()
1156 tics = (poll * HZ) / 8000; in dsp_init()
1157 if (tics * 8000 == poll * HZ) { in dsp_init()
1159 dsp_poll = poll; in dsp_init()
1160 if (poll >= 64) in dsp_init()
1163 poll++; in dsp_init()