diff options
Diffstat (limited to 'drivers/usb/host/ohci-dbg.c')
| -rw-r--r-- | drivers/usb/host/ohci-dbg.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-dbg.c b/drivers/usb/host/ohci-dbg.c index 36abd2baa3e..d7d34492934 100644 --- a/drivers/usb/host/ohci-dbg.c +++ b/drivers/usb/host/ohci-dbg.c @@ -413,18 +413,21 @@ static const struct file_operations debug_async_fops = {  	.open		= debug_async_open,  	.read		= debug_output,  	.release	= debug_close, +	.llseek		= default_llseek,  };  static const struct file_operations debug_periodic_fops = {  	.owner		= THIS_MODULE,  	.open		= debug_periodic_open,  	.read		= debug_output,  	.release	= debug_close, +	.llseek		= default_llseek,  };  static const struct file_operations debug_registers_fops = {  	.owner		= THIS_MODULE,  	.open		= debug_registers_open,  	.read		= debug_output,  	.release	= debug_close, +	.llseek		= default_llseek,  };  static struct dentry *ohci_debug_root;  |