diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-06-15 10:35:18 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-21 17:30:56 +0300 |
commit | e2900f7466ddf013686520f2d23c3a9d50a6a516 (patch) | |
tree | cf993095435187e0f5d277ae034f124fda638234 /drivers/usb | |
parent | c09b1f372e746aeeb61ef8ffe0fea3970fd9273e (diff) | |
download | linux-e2900f7466ddf013686520f2d23c3a9d50a6a516.tar.xz |
usb: gadget: ast2600: Fix a couple of spelling mistakes
There are a couple of spelling mistakes, one in a dev_warn message
and another in a SETUP_DBG message. Fix these and remove an extraneous
white space too.
Acked-by: Neal Liu <neal_liu@aspeedtech.com>
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220615073518.192827-1-colin.i.king@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/udc/aspeed_udc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/udc/aspeed_udc.c b/drivers/usb/gadget/udc/aspeed_udc.c index 4dead40895dd..d771612e6387 100644 --- a/drivers/usb/gadget/udc/aspeed_udc.c +++ b/drivers/usb/gadget/udc/aspeed_udc.c @@ -903,7 +903,7 @@ static void ast_udc_epn_handle_desc(struct ast_udc_dev *udc, u16 ep_num) int i; if (list_empty(&ep->queue)) { - dev_warn(dev, "%s reqest queue empty !\n", ep->ep.name); + dev_warn(dev, "%s request queue empty!\n", ep->ep.name); return; } @@ -1035,7 +1035,7 @@ static void ast_udc_ep0_handle_setup(struct ast_udc_dev *udc) memcpy_fromio(&crq, udc->creq, sizeof(crq)); - SETUP_DBG(udc, "SETEUP packet: %02x/%02x/%04x/%04x/%04x\n", + SETUP_DBG(udc, "SETUP packet: %02x/%02x/%04x/%04x/%04x\n", crq.bRequestType, crq.bRequest, le16_to_cpu(crq.wValue), le16_to_cpu(crq.wIndex), le16_to_cpu(crq.wLength)); |