diff options
Diffstat (limited to 'drivers/usb/gadget/at91_udc.c')
-rw-r--r-- | drivers/usb/gadget/at91_udc.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/usb/gadget/at91_udc.c b/drivers/usb/gadget/at91_udc.c index 9b913afb2e6d..274c60a970cd 100644 --- a/drivers/usb/gadget/at91_udc.c +++ b/drivers/usb/gadget/at91_udc.c | |||
@@ -231,6 +231,7 @@ static int proc_udc_open(struct inode *inode, struct file *file) | |||
231 | } | 231 | } |
232 | 232 | ||
233 | static const struct file_operations proc_ops = { | 233 | static const struct file_operations proc_ops = { |
234 | .owner = THIS_MODULE, | ||
234 | .open = proc_udc_open, | 235 | .open = proc_udc_open, |
235 | .read = seq_read, | 236 | .read = seq_read, |
236 | .llseek = seq_lseek, | 237 | .llseek = seq_lseek, |
@@ -239,15 +240,7 @@ static const struct file_operations proc_ops = { | |||
239 | 240 | ||
240 | static void create_debug_file(struct at91_udc *udc) | 241 | static void create_debug_file(struct at91_udc *udc) |
241 | { | 242 | { |
242 | struct proc_dir_entry *pde; | 243 | udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc); |
243 | |||
244 | pde = create_proc_entry (debug_filename, 0, NULL); | ||
245 | udc->pde = pde; | ||
246 | if (pde == NULL) | ||
247 | return; | ||
248 | |||
249 | pde->proc_fops = &proc_ops; | ||
250 | pde->data = udc; | ||
251 | } | 244 | } |
252 | 245 | ||
253 | static void remove_debug_file(struct at91_udc *udc) | 246 | static void remove_debug_file(struct at91_udc *udc) |