Commit f42b333f authored by Wei Ming Chen's avatar Wei Ming Chen Committed by Greg Kroah-Hartman

usb: gadget: function: Fix inconsistent indent

Remove whitespace before variable
Acked-by: default avatarFelipe Balbi <balbi@kernel.org>
Signed-off-by: default avatarWei Ming Chen <jj251510319013@gmail.com>
Link: https://lore.kernel.org/r/20210503160927.6482-1-jj251510319013@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d2d9b941
...@@ -29,8 +29,8 @@ struct f_hid_opts { ...@@ -29,8 +29,8 @@ struct f_hid_opts {
* Protect the data form concurrent access by read/write * Protect the data form concurrent access by read/write
* and create symlink/remove symlink. * and create symlink/remove symlink.
*/ */
struct mutex lock; struct mutex lock;
int refcnt; int refcnt;
}; };
int ghid_setup(struct usb_gadget *g, int count); int ghid_setup(struct usb_gadget *g, int count);
......
...@@ -29,8 +29,8 @@ struct f_midi_opts { ...@@ -29,8 +29,8 @@ struct f_midi_opts {
* Protect the data form concurrent access by read/write * Protect the data form concurrent access by read/write
* and create symlink/remove symlink. * and create symlink/remove symlink.
*/ */
struct mutex lock; struct mutex lock;
int refcnt; int refcnt;
}; };
#endif /* U_MIDI_H */ #endif /* U_MIDI_H */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment