diff options
Diffstat (limited to 'drivers/usb/host/ehci-dbg.c')
-rw-r--r-- | drivers/usb/host/ehci-dbg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-dbg.c b/drivers/usb/host/ehci-dbg.c index 76b7fd2d838a..86afdc73322f 100644 --- a/drivers/usb/host/ehci-dbg.c +++ b/drivers/usb/host/ehci-dbg.c | |||
@@ -369,18 +369,21 @@ static const struct file_operations debug_async_fops = { | |||
369 | .open = debug_async_open, | 369 | .open = debug_async_open, |
370 | .read = debug_output, | 370 | .read = debug_output, |
371 | .release = debug_close, | 371 | .release = debug_close, |
372 | .llseek = default_llseek, | ||
372 | }; | 373 | }; |
373 | static const struct file_operations debug_periodic_fops = { | 374 | static const struct file_operations debug_periodic_fops = { |
374 | .owner = THIS_MODULE, | 375 | .owner = THIS_MODULE, |
375 | .open = debug_periodic_open, | 376 | .open = debug_periodic_open, |
376 | .read = debug_output, | 377 | .read = debug_output, |
377 | .release = debug_close, | 378 | .release = debug_close, |
379 | .llseek = default_llseek, | ||
378 | }; | 380 | }; |
379 | static const struct file_operations debug_registers_fops = { | 381 | static const struct file_operations debug_registers_fops = { |
380 | .owner = THIS_MODULE, | 382 | .owner = THIS_MODULE, |
381 | .open = debug_registers_open, | 383 | .open = debug_registers_open, |
382 | .read = debug_output, | 384 | .read = debug_output, |
383 | .release = debug_close, | 385 | .release = debug_close, |
386 | .llseek = default_llseek, | ||
384 | }; | 387 | }; |
385 | static const struct file_operations debug_lpm_fops = { | 388 | static const struct file_operations debug_lpm_fops = { |
386 | .owner = THIS_MODULE, | 389 | .owner = THIS_MODULE, |
@@ -388,6 +391,7 @@ static const struct file_operations debug_lpm_fops = { | |||
388 | .read = debug_lpm_read, | 391 | .read = debug_lpm_read, |
389 | .write = debug_lpm_write, | 392 | .write = debug_lpm_write, |
390 | .release = debug_lpm_close, | 393 | .release = debug_lpm_close, |
394 | .llseek = noop_llseek, | ||
391 | }; | 395 | }; |
392 | 396 | ||
393 | static struct dentry *ehci_debug_root; | 397 | static struct dentry *ehci_debug_root; |