Lines Matching refs:poll
167 static int poll; variable
173 module_param(poll, uint, S_IRUGO | S_IWUSR);
1126 dsp_poll = poll; in dsp_init()
1130 "maximum.\n", __func__, poll, MAX_POLL); in dsp_init()
1140 dsp_tics = poll * HZ / 8000; in dsp_init()
1141 if (dsp_tics * 8000 != poll * HZ) { in dsp_init()
1144 "%d HZ.\n", poll, HZ); in dsp_init()
1149 poll = 8; in dsp_init()
1150 while (poll <= MAX_POLL) { in dsp_init()
1151 tics = (poll * HZ) / 8000; in dsp_init()
1152 if (tics * 8000 == poll * HZ) { in dsp_init()
1154 dsp_poll = poll; in dsp_init()
1155 if (poll >= 64) in dsp_init()
1158 poll++; in dsp_init()