diff options
Diffstat (limited to 'drivers/isdn/hardware/eicon/divasproc.c')
-rw-r--r-- | drivers/isdn/hardware/eicon/divasproc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/isdn/hardware/eicon/divasproc.c b/drivers/isdn/hardware/eicon/divasproc.c index 3a4165c61196..56ce98a4e248 100644 --- a/drivers/isdn/hardware/eicon/divasproc.c +++ b/drivers/isdn/hardware/eicon/divasproc.c | |||
@@ -145,7 +145,7 @@ void remove_divas_proc(void) | |||
145 | static ssize_t grp_opt_proc_write(struct file *file, const char __user *buffer, | 145 | static ssize_t grp_opt_proc_write(struct file *file, const char __user *buffer, |
146 | size_t count, loff_t *pos) | 146 | size_t count, loff_t *pos) |
147 | { | 147 | { |
148 | diva_os_xdi_adapter_t *a = PDE(file_inode(file))->data; | 148 | diva_os_xdi_adapter_t *a = PDE_DATA(file_inode(file)); |
149 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; | 149 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; |
150 | 150 | ||
151 | if ((count == 1) || (count == 2)) { | 151 | if ((count == 1) || (count == 2)) { |
@@ -172,7 +172,7 @@ static ssize_t grp_opt_proc_write(struct file *file, const char __user *buffer, | |||
172 | static ssize_t d_l1_down_proc_write(struct file *file, const char __user *buffer, | 172 | static ssize_t d_l1_down_proc_write(struct file *file, const char __user *buffer, |
173 | size_t count, loff_t *pos) | 173 | size_t count, loff_t *pos) |
174 | { | 174 | { |
175 | diva_os_xdi_adapter_t *a = PDE(file_inode(file))->data; | 175 | diva_os_xdi_adapter_t *a = PDE_DATA(file_inode(file)); |
176 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; | 176 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; |
177 | 177 | ||
178 | if ((count == 1) || (count == 2)) { | 178 | if ((count == 1) || (count == 2)) { |
@@ -210,7 +210,7 @@ static int d_l1_down_proc_show(struct seq_file *m, void *v) | |||
210 | 210 | ||
211 | static int d_l1_down_proc_open(struct inode *inode, struct file *file) | 211 | static int d_l1_down_proc_open(struct inode *inode, struct file *file) |
212 | { | 212 | { |
213 | return single_open(file, d_l1_down_proc_show, PDE(inode)->data); | 213 | return single_open(file, d_l1_down_proc_show, PDE_DATA(inode)); |
214 | } | 214 | } |
215 | 215 | ||
216 | static const struct file_operations d_l1_down_proc_fops = { | 216 | static const struct file_operations d_l1_down_proc_fops = { |
@@ -236,7 +236,7 @@ static int grp_opt_proc_show(struct seq_file *m, void *v) | |||
236 | 236 | ||
237 | static int grp_opt_proc_open(struct inode *inode, struct file *file) | 237 | static int grp_opt_proc_open(struct inode *inode, struct file *file) |
238 | { | 238 | { |
239 | return single_open(file, grp_opt_proc_show, PDE(inode)->data); | 239 | return single_open(file, grp_opt_proc_show, PDE_DATA(inode)); |
240 | } | 240 | } |
241 | 241 | ||
242 | static const struct file_operations grp_opt_proc_fops = { | 242 | static const struct file_operations grp_opt_proc_fops = { |
@@ -251,7 +251,7 @@ static const struct file_operations grp_opt_proc_fops = { | |||
251 | static ssize_t info_proc_write(struct file *file, const char __user *buffer, | 251 | static ssize_t info_proc_write(struct file *file, const char __user *buffer, |
252 | size_t count, loff_t *pos) | 252 | size_t count, loff_t *pos) |
253 | { | 253 | { |
254 | diva_os_xdi_adapter_t *a = PDE(file_inode(file))->data; | 254 | diva_os_xdi_adapter_t *a = PDE_DATA(file_inode(file)); |
255 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; | 255 | PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1]; |
256 | char c[4]; | 256 | char c[4]; |
257 | 257 | ||
@@ -335,7 +335,7 @@ static int info_proc_show(struct seq_file *m, void *v) | |||
335 | 335 | ||
336 | static int info_proc_open(struct inode *inode, struct file *file) | 336 | static int info_proc_open(struct inode *inode, struct file *file) |
337 | { | 337 | { |
338 | return single_open(file, info_proc_show, PDE(inode)->data); | 338 | return single_open(file, info_proc_show, PDE_DATA(inode)); |
339 | } | 339 | } |
340 | 340 | ||
341 | static const struct file_operations info_proc_fops = { | 341 | static const struct file_operations info_proc_fops = { |