aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Ming Chen <jj251510319013@gmail.com>2021-04-23 21:24:17 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-05-10 11:16:10 +0200
commit29a812e4f3462c7020368a1f5b6cd7814225d983 (patch)
tree1d462c3ffafc80ab5355d8e5e974f4c8fcd1775e
parentLinux 5.13-rc1 (diff)
downloadlinux-dev-29a812e4f3462c7020368a1f5b6cd7814225d983.tar.xz
linux-dev-29a812e4f3462c7020368a1f5b6cd7814225d983.zip
usb: gadget: function: fix typo in f_hid.c
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>
-rw-r--r--drivers/usb/gadget/function/f_hid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/function/f_hid.c b/drivers/usb/gadget/function/f_hid.c
index 1125f4715830..0c964be58406 100644
--- a/drivers/usb/gadget/function/f_hid.c
+++ b/drivers/usb/gadget/function/f_hid.c
@@ -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;