diff options
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r-- | fs/debugfs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index e4b430552c88..bf3901ab1744 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c | |||
@@ -32,8 +32,8 @@ static ssize_t default_write_file(struct file *file, const char __user *buf, | |||
32 | 32 | ||
33 | static int default_open(struct inode *inode, struct file *file) | 33 | static int default_open(struct inode *inode, struct file *file) |
34 | { | 34 | { |
35 | if (inode->u.generic_ip) | 35 | if (inode->i_private) |
36 | file->private_data = inode->u.generic_ip; | 36 | file->private_data = inode->i_private; |
37 | 37 | ||
38 | return 0; | 38 | return 0; |
39 | } | 39 | } |