Lines Matching refs:no
244 * Ok, the device has no more space. It has NOT written
344 unsigned int no, void __user *data)
348 if (no == MTIOCTOP) {
387 if (no == MTIOCPOS) {
397 if (no == MTIOCGET) {
430 return device->discipline->ioctl_fn(device, no, (unsigned long)data);
434 tapechar_ioctl(struct file *filp, unsigned int no, unsigned long data)
443 rc = __tapechar_ioctl(device, no, (void __user *)data);
450 tapechar_compat_ioctl(struct file *filp, unsigned int no, unsigned long data)
455 if (no == MTIOCPOS32)
456 no = MTIOCPOS;
457 else if (no == MTIOCGET32)
458 no = MTIOCGET;
461 rc = __tapechar_ioctl(device, no, compat_ptr(data));