diff options
Diffstat (limited to 'fs/afs/proc.c')
-rw-r--r-- | fs/afs/proc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/afs/proc.c b/fs/afs/proc.c index 096b23f821a1..526e4bbbde59 100644 --- a/fs/afs/proc.c +++ b/fs/afs/proc.c | |||
@@ -190,7 +190,7 @@ static int afs_proc_cells_open(struct inode *inode, struct file *file) | |||
190 | return ret; | 190 | return ret; |
191 | 191 | ||
192 | m = file->private_data; | 192 | m = file->private_data; |
193 | m->private = PDE(inode)->data; | 193 | m->private = PDE_DATA(inode); |
194 | 194 | ||
195 | return 0; | 195 | return 0; |
196 | } | 196 | } |
@@ -448,7 +448,7 @@ static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file) | |||
448 | struct seq_file *m; | 448 | struct seq_file *m; |
449 | int ret; | 449 | int ret; |
450 | 450 | ||
451 | cell = PDE(inode)->data; | 451 | cell = PDE_DATA(inode); |
452 | if (!cell) | 452 | if (!cell) |
453 | return -ENOENT; | 453 | return -ENOENT; |
454 | 454 | ||
@@ -554,7 +554,7 @@ static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file) | |||
554 | struct seq_file *m; | 554 | struct seq_file *m; |
555 | int ret; | 555 | int ret; |
556 | 556 | ||
557 | cell = PDE(inode)->data; | 557 | cell = PDE_DATA(inode); |
558 | if (!cell) | 558 | if (!cell) |
559 | return -ENOENT; | 559 | return -ENOENT; |
560 | 560 | ||
@@ -659,7 +659,7 @@ static int afs_proc_cell_servers_open(struct inode *inode, struct file *file) | |||
659 | struct seq_file *m; | 659 | struct seq_file *m; |
660 | int ret; | 660 | int ret; |
661 | 661 | ||
662 | cell = PDE(inode)->data; | 662 | cell = PDE_DATA(inode); |
663 | if (!cell) | 663 | if (!cell) |
664 | return -ENOENT; | 664 | return -ENOENT; |
665 | 665 | ||