usb: gadget: function: fix typo in f_hid.c
authorWei Ming Chen <jj251510319013@gmail.com>
Fri, 23 Apr 2021 13:24:17 +0000 (21:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 May 2021 09:16:10 +0000 (11:16 +0200)
Replace `me` with `be`

Acked-by: Felipe Balbi <balbi@kernel.org>
Signed-off-by: Wei Ming Chen <jj251510319013@gmail.com>
Link: https://lore.kernel.org/r/20210423132417.4385-1-jj251510319013@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/function/f_hid.c

index 1125f47..0c964be 100644 (file)
@@ -1117,7 +1117,7 @@ static struct usb_function *hidg_alloc(struct usb_function_instance *fi)
        hidg->func.setup   = hidg_setup;
        hidg->func.free_func = hidg_free;
 
-       /* this could me made configurable at some point */
+       /* this could be made configurable at some point */
        hidg->qlen         = 4;
 
        return &hidg->func;