int hpux_ioctl(int fd, unsigned long cmd, unsigned long arg) { int result = -EOPNOTSUPP; int type = _IOC_TYPE(cmd); switch (type) { case 'T': /* Our structures are now compatible with HPUX's */ result = sys_ioctl(fd, cmd, arg); break; case 't': result = hpux_ioctl_t(fd, cmd, arg); break; } return result; }
int hpux_ioctl(int fd, unsigned long cmd, unsigned long arg) { int result = -EOPNOTSUPP; int type = _IOC_TYPE(cmd); switch (type) { case 'T': /* Our structures are now compatible with HPUX's */ result = sys_ioctl(fd, cmd, arg); break; case 't': result = hpux_ioctl_t(fd, cmd, arg); break; default: /* If my mother ever sees this, I hope she disowns me. * Take this out after NYLWE. */ result = sys_ioctl(fd, cmd, arg); } return result; }