media: dvb-usb: fix spelling mistake: "completition" -> "completion"
authorColin Ian King <colin.king@canonical.com>
Fri, 3 Aug 2018 14:36:01 +0000 (10:36 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Fri, 3 Aug 2018 20:08:55 +0000 (16:08 -0400)
Trivial fix to spelling mistake in debug and error messages

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/usb/dvb-usb/usb-urb.c

index 5e05963..9771f09 100644 (file)
@@ -33,7 +33,7 @@ static void usb_urb_complete(struct urb *urb)
                case -ESHUTDOWN:
                        return;
                default:        /* error */
-                       deb_ts("urb completition error %d.\n", urb->status);
+                       deb_ts("urb completion error %d.\n", urb->status);
                        break;
        }
 
@@ -57,7 +57,7 @@ static void usb_urb_complete(struct urb *urb)
                                stream->complete(stream, b, urb->actual_length);
                        break;
                default:
-                       err("unknown endpoint type in completition handler.");
+                       err("unknown endpoint type in completion handler.");
                        return;
        }
        usb_submit_urb(urb,GFP_ATOMIC);