diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2013-10-10 23:41:28 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-12 02:06:11 +0200 |
commit | 1335f2d2bad83a4a1e1351e906646fd28225c602 (patch) | |
tree | c3f99f9b36750f070b27890030d1cc44fffe3132 /drivers/usb/core/file.c | |
parent | drivers: usb: core: {file,hub,sysfs,usb}.c: Whitespace fixes (diff) | |
download | linux-1335f2d2bad83a4a1e1351e906646fd28225c602.tar.xz linux-1335f2d2bad83a4a1e1351e906646fd28225c602.zip |
drivers: usb: core: file.c: moved asterisk to variable name
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/file.c')
-rw-r--r-- | drivers/usb/core/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/file.c b/drivers/usb/core/file.c index 903c7efcc367..3bdfbf88a0ae 100644 --- a/drivers/usb/core/file.c +++ b/drivers/usb/core/file.c @@ -27,7 +27,7 @@ static const struct file_operations *usb_minors[MAX_USB_MINORS]; static DECLARE_RWSEM(minor_rwsem); -static int usb_open(struct inode * inode, struct file * file) +static int usb_open(struct inode *inode, struct file *file) { int minor = iminor(inode); const struct file_operations *c; |