Lines Matching refs:val
184 int val; in timer_ioctl() local
189 val = TMR_INTERNAL; in timer_ioctl()
206 if (get_user(val, p)) in timer_ioctl()
208 if (val) in timer_ioctl()
210 if (val < 1) in timer_ioctl()
211 val = 1; in timer_ioctl()
212 if (val > 1000) in timer_ioctl()
213 val = 1000; in timer_ioctl()
214 curr_timebase = val; in timer_ioctl()
216 val = curr_timebase; in timer_ioctl()
220 if (get_user(val, p)) in timer_ioctl()
222 if (val) in timer_ioctl()
224 if (val < 8) in timer_ioctl()
225 val = 8; in timer_ioctl()
226 if (val > 250) in timer_ioctl()
227 val = 250; in timer_ioctl()
231 curr_tempo = val; in timer_ioctl()
234 val = curr_tempo; in timer_ioctl()
238 if (get_user(val, p)) in timer_ioctl()
240 if (val != 0) /* Can't change */ in timer_ioctl()
242 val = ((curr_tempo * curr_timebase) + 30) / 60; in timer_ioctl()
246 val = curr_ticks; in timer_ioctl()
253 return put_user(val, p); in timer_ioctl()