diff options
Diffstat (limited to 'arch/mips/lasat/picvue_proc.c')
-rw-r--r-- | arch/mips/lasat/picvue_proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/lasat/picvue_proc.c b/arch/mips/lasat/picvue_proc.c index c592bc8b8c99..638c5db122c9 100644 --- a/arch/mips/lasat/picvue_proc.c +++ b/arch/mips/lasat/picvue_proc.c | |||
@@ -58,13 +58,13 @@ static int pvc_line_proc_show(struct seq_file *m, void *v) | |||
58 | 58 | ||
59 | static int pvc_line_proc_open(struct inode *inode, struct file *file) | 59 | static int pvc_line_proc_open(struct inode *inode, struct file *file) |
60 | { | 60 | { |
61 | return single_open(file, pvc_line_proc_show, PDE(inode)->data); | 61 | return single_open(file, pvc_line_proc_show, PDE_DATA(inode)); |
62 | } | 62 | } |
63 | 63 | ||
64 | static ssize_t pvc_line_proc_write(struct file *file, const char __user *buf, | 64 | static ssize_t pvc_line_proc_write(struct file *file, const char __user *buf, |
65 | size_t count, loff_t *pos) | 65 | size_t count, loff_t *pos) |
66 | { | 66 | { |
67 | int lineno = *(int *)PDE(file_inode(file))->data; | 67 | int lineno = *(int *)PDE_DATA(file_inode(file)); |
68 | char kbuf[PVC_LINELEN]; | 68 | char kbuf[PVC_LINELEN]; |
69 | size_t len; | 69 | size_t len; |
70 | 70 | ||