summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_ioctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/fs_ioctl.c')
-rw-r--r--nuttx/fs/fs_ioctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/fs_ioctl.c b/nuttx/fs/fs_ioctl.c
index 2a49aec9b..8035c4cc4 100644
--- a/nuttx/fs/fs_ioctl.c
+++ b/nuttx/fs/fs_ioctl.c
@@ -77,11 +77,11 @@ int ioctl(int fd, int req, unsigned long arg)
/* Is a driver registered? Does it support the ioctl method? */
- if (inode && inode->i_ops && inode->i_ops->ioctl)
+ if (inode && inode->u.i_ops && inode->u.i_ops->ioctl)
{
/* Yes, then let it perform the ioctl */
- ret = (int)inode->i_ops->ioctl(this_file, req, arg);
+ ret = (int)inode->u.i_ops->ioctl(this_file, req, arg);
}
}
return ret;