diff options
Diffstat (limited to 'drivers/usb/core/devio.c')
-rw-r--r-- | drivers/usb/core/devio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index b78fbe222b72..6e8af6ddb5f7 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c | |||
@@ -160,7 +160,7 @@ static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig) | |||
160 | { | 160 | { |
161 | loff_t ret; | 161 | loff_t ret; |
162 | 162 | ||
163 | mutex_lock(&file->f_dentry->d_inode->i_mutex); | 163 | mutex_lock(&file_inode(file)->i_mutex); |
164 | 164 | ||
165 | switch (orig) { | 165 | switch (orig) { |
166 | case 0: | 166 | case 0: |
@@ -176,7 +176,7 @@ static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig) | |||
176 | ret = -EINVAL; | 176 | ret = -EINVAL; |
177 | } | 177 | } |
178 | 178 | ||
179 | mutex_unlock(&file->f_dentry->d_inode->i_mutex); | 179 | mutex_unlock(&file_inode(file)->i_mutex); |
180 | return ret; | 180 | return ret; |
181 | } | 181 | } |
182 | 182 | ||
@@ -1970,7 +1970,7 @@ static long usbdev_do_ioctl(struct file *file, unsigned int cmd, | |||
1970 | void __user *p) | 1970 | void __user *p) |
1971 | { | 1971 | { |
1972 | struct dev_state *ps = file->private_data; | 1972 | struct dev_state *ps = file->private_data; |
1973 | struct inode *inode = file->f_path.dentry->d_inode; | 1973 | struct inode *inode = file_inode(file); |
1974 | struct usb_device *dev = ps->dev; | 1974 | struct usb_device *dev = ps->dev; |
1975 | int ret = -ENOTTY; | 1975 | int ret = -ENOTTY; |
1976 | 1976 | ||