usb: gadget: function: Fix inconsistent indent

Remove whitespace before variable

Acked-by: Felipe Balbi <balbi@kernel.org>
Signed-off-by: Wei Ming Chen <jj251510319013@gmail.com>
Link: https://lore.kernel.org/r/20210503160927.6482-1-jj251510319013@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Wei Ming Chen 2021-05-04 00:09:27 +08:00 committed by Greg Kroah-Hartman
parent d2d9b94164
commit f42b333f28
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ struct f_hid_opts {
* Protect the data form concurrent access by read/write
* and create symlink/remove symlink.
*/
struct mutex lock;
int refcnt;
struct mutex lock;
int refcnt;
};
int ghid_setup(struct usb_gadget *g, int count);

View File

@ -29,8 +29,8 @@ struct f_midi_opts {
* Protect the data form concurrent access by read/write
* and create symlink/remove symlink.
*/
struct mutex lock;
int refcnt;
struct mutex lock;
int refcnt;
};
#endif /* U_MIDI_H */