diff options
author | Geyslan G. Bem <geyslan@gmail.com> | 2016-01-25 22:45:03 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-03 13:44:05 -0800 |
commit | 8d587d64955c42167e6fd413560452d064cd02d1 (patch) | |
tree | 432b8cecdebbb0665a4e140a7ea3f6be6fc56551 /drivers/usb/host/ehci-dbg.c | |
parent | 1f8e5afdb28510eda75700e5c12af03550c10a8d (diff) | |
download | op-kernel-dev-8d587d64955c42167e6fd413560452d064cd02d1.zip op-kernel-dev-8d587d64955c42167e6fd413560452d064cd02d1.tar.gz |
usb: host: ehci-dbg: add blank line after declarations
This patch fixes coding style issues reported by checkpatch concerning
to missing line after variable declarations.
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-dbg.c')
-rw-r--r-- | drivers/usb/host/ehci-dbg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-dbg.c b/drivers/usb/host/ehci-dbg.c index 9efb2d1..8c55d9a 100644 --- a/drivers/usb/host/ehci-dbg.c +++ b/drivers/usb/host/ehci-dbg.c @@ -1071,6 +1071,7 @@ static int debug_bandwidth_open(struct inode *inode, struct file *file) static int debug_periodic_open(struct inode *inode, struct file *file) { struct debug_buffer *buf; + buf = alloc_buffer(inode->i_private, fill_periodic_buffer); if (!buf) return -ENOMEM; |