diff options
-rw-r--r-- | net/atm/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/proc.c b/net/atm/proc.c index 91fe5f53ff11..739866bfe9e9 100644 --- a/net/atm/proc.c +++ b/net/atm/proc.c | |||
@@ -393,7 +393,7 @@ static ssize_t proc_dev_atm_read(struct file *file, char __user *buf, | |||
393 | if (count == 0) return 0; | 393 | if (count == 0) return 0; |
394 | page = get_zeroed_page(GFP_KERNEL); | 394 | page = get_zeroed_page(GFP_KERNEL); |
395 | if (!page) return -ENOMEM; | 395 | if (!page) return -ENOMEM; |
396 | dev = PDE(file->f_dentry->d_inode)->data; | 396 | dev = PDE(file->f_path.dentry->d_inode)->data; |
397 | if (!dev->ops->proc_read) | 397 | if (!dev->ops->proc_read) |
398 | length = -EINVAL; | 398 | length = -EINVAL; |
399 | else { | 399 | else { |