usb: gadget: function: Fix inconsistent indent
authorWei Ming Chen <jj251510319013@gmail.com>
Mon, 3 May 2021 16:09:27 +0000 (00:09 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 May 2021 09:16:10 +0000 (11:16 +0200)
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>
drivers/usb/gadget/function/u_hid.h
drivers/usb/gadget/function/u_midi.h

index 84e6da3..98d6af5 100644 (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);
index f6e14af..2e400b4 100644 (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 */